1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

s/str::to_string/str::to_owned

This commit is contained in:
Rob Ede
2023-07-09 03:32:47 +01:00
parent 9a5cd90634
commit 8fd4262136
14 changed files with 26 additions and 29 deletions

View File

@ -124,7 +124,7 @@ mod test {
RedisActorSessionStore::new("127.0.0.1:6379"),
private_key.clone(),
)
.cookie_name("test-session".to_string())
.cookie_name("test-session".to_owned())
.build(),
)
.wrap(middleware::Logger::default())