Skip to content

Commit

Permalink
chore: default disable hook function
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWaWaR committed Sep 27, 2023
1 parent d6f6c7e commit 3e85a72
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions akasa-core/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ pub struct HookConfig {
impl Default for HookConfig {
fn default() -> HookConfig {
HookConfig {
enable_before_connect: true,
enable_after_connect: true,
enable_publish: true,
enable_subscribe: true,
enable_unsubscribe: true,
enable_before_connect: false,
enable_after_connect: false,
enable_publish: false,
enable_subscribe: false,
enable_unsubscribe: false,
}
}
}
Expand Down

0 comments on commit 3e85a72

Please sign in to comment.