We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e5428 commit 5da6dc7Copy full SHA for 5da6dc7
1 file changed
rust/src/lib.rs
@@ -72,14 +72,13 @@ pub mod egress_policies;
72
///
73
/// Returning `false` will cause Envoy to reject the config hence the
74
/// filter will not be loaded.
75
-fn program_init() -> bool {
76
- envoy_log_info!("Rust dynamic module initialized");
+fn init() -> bool {
77
true
78
}
79
80
// Register all filter types
81
declare_all_init_functions!(
82
- program_init,
+ init,
83
http: new_http_filter_config_fn,
84
network: new_network_filter_config_fn,
85
udp_listener: new_udp_listener_filter_config_fn,
0 commit comments