* Add iterative upgrades to nym-node * Authenticator correct configuration * Add info log * Enable auth opts on entry gw * Move ephemeral config from exit_gateway * Fix fmt * Fix clippy * Pass custom transceiver for authenticator * Fix non-linux build * Feature gate wg_api * Change naming from semver to simple incremental * Move opts unwrap inside the mutable function * Remove unneeded authenticator_description
This commit is contained in:
committed by
GitHub
parent
eec1895acc
commit
1f144690da
@@ -409,9 +409,6 @@ async fn migrate_gateway(mut args: Args) -> Result<(), NymNodeError> {
|
||||
bind_address: SocketAddr::new(ip, cfg.gateway.clients_port),
|
||||
announce_ws_port: None,
|
||||
announce_wss_port: cfg.gateway.clients_wss_port,
|
||||
authenticator: config::authenticator::Authenticator {
|
||||
debug: Default::default(),
|
||||
},
|
||||
debug: config::entry_gateway::Debug {
|
||||
message_retrieval_limit: cfg.debug.message_retrieval_limit,
|
||||
},
|
||||
@@ -457,9 +454,6 @@ async fn migrate_gateway(mut args: Args) -> Result<(), NymNodeError> {
|
||||
.unwrap_or_default(),
|
||||
},
|
||||
},
|
||||
authenticator: config::authenticator::Authenticator {
|
||||
debug: Default::default(),
|
||||
},
|
||||
}),
|
||||
)
|
||||
.build();
|
||||
|
||||
Reference in New Issue
Block a user