Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
mosttt authored and niuhuan committed Feb 2, 2024
1 parent 3ecdc98 commit c410117
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"proc_qq",
"proc_qq_codegen",
Expand Down
2 changes: 1 addition & 1 deletion proc_qq_template/src/database/redis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ where
.unwrap()
.get_async_connection()
.await?
.set_ex(key, value, expire_seconds)
.set_ex(key, value, expire_seconds as u64)
.await
}

Expand Down

0 comments on commit c410117

Please sign in to comment.