diff --git a/src/context/mod.rs b/src/context/mod.rs index 1578ce90..1278114a 100644 --- a/src/context/mod.rs +++ b/src/context/mod.rs @@ -796,7 +796,10 @@ impl Context { /// as a logical bug that need to be fixed in the module, an attempt to protect against /// infinite loops by halting the execution could result in violation of the feature correctness /// and so Redis will make no attempt to protect the module from infinite loops. - pub fn add_post_notification_job(&self, callback: F) -> Status { + pub fn add_post_notification_job( + &self, + callback: F, + ) -> Status { let callback = Box::into_raw(Box::new(Some(callback))); unsafe { RedisModule_AddPostNotificationJob(