Change v4_migrate default to false.

This flag helps to migrate from v3 to v4 and adds a compatibility layer
to support ChirpStack Gateway Bridge v3.14+. The plan was to default
this to false in an earlier release, but this change never happened.
This commit is contained in:
Orne Brocaar 2023-11-27 09:09:37 +00:00
parent 1b0deedb64
commit 1a153b01f4

View File

@ -642,7 +642,7 @@ impl Default for GatewayBackendMqtt {
tls_cert: "".into(),
tls_key: "".into(),
keep_alive_interval: Duration::from_secs(30),
v4_migrate: true,
v4_migrate: false,
}
}
}