Skip to content

Commit

Permalink
naming changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Aprabhat19 committed Jan 6, 2025
1 parent 83eeb6f commit 6ec985e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/redis_interface/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ impl super::RedisConnectionPool {
}

#[instrument(level = "DEBUG", skip(self))]
pub async fn incr_keys_using_script<V, T>(
pub async fn implement_redis_functionalities_using_scripts<V, T>(
&self,
lua_script: &'static str,
key: Vec<String>,
Expand Down Expand Up @@ -976,7 +976,7 @@ mod tests {

// Act
let result = pool
.incr_keys_using_script::<_, ()>(lua_script, key, values)
.implement_redis_functionalities_using_scripts::<_, ()>(lua_script, key, values)
.await;

// Assert Setup
Expand Down Expand Up @@ -1012,7 +1012,7 @@ mod tests {

// Act
let result = pool
.incr_keys_using_script::<_, String>(lua_script, key, 0)
.implement_redis_functionalities_using_scripts::<_, String>(lua_script, key, 0)
.await;

// Assert Setup
Expand Down

0 comments on commit 6ec985e

Please sign in to comment.