We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dcf7bb commit 6191c36Copy full SHA for 6191c36
1 file changed
src/handlers/http/modal/mod.rs
@@ -460,6 +460,15 @@ impl NodeMetadata {
460
meta.token = token;
461
}
462
463
+ let flight_port = options.flight_port.to_string();
464
+ if meta.flight_port != flight_port {
465
+ info!(
466
+ "Flight Port was Updated. Old: {} New: {}",
467
+ meta.flight_port, flight_port
468
+ );
469
+ meta.flight_port = flight_port;
470
+ }
471
+
472
meta.node_type = node_type;
473
474
0 commit comments