Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Vigith Maurice <[email protected]>
  • Loading branch information
vigith committed Feb 20, 2025
1 parent 152dd02 commit dd9aebb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust/serving/src/app/callback/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ where

/// register a new connection
/// The oneshot receiver will be notified when all callbacks for this connection is received from
/// the numaflow pipeline.
/// the numaflow pipeline.
pub(crate) async fn register(
&mut self,
id: Option<String>,
Expand Down
2 changes: 1 addition & 1 deletion rust/serving/src/app/callback/store/redisstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl super::Store for RedisConnection {
Ok(id)
}
None => {
// We use UUID v7 as the request id. Attempt for a maxium of 5 times to generate an
// We use UUID v7 as the request id. Attempt for a maxium of 5 times to generate an
// id that doesn't currently exist in the Store.
for _ in 0..5 {
let id = Uuid::now_v7().to_string();
Expand Down

0 comments on commit dd9aebb

Please sign in to comment.