Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.

Commit b1f4d5e

Browse files
committed
Default MQTT QoS to 1
1 parent dabff51 commit b1f4d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func initConfig() {
2828
viper.SetDefault("srv6_net", "fc00::/56")
2929
viper.SetDefault("socket_path", "/var/run/galactic/agent.sock")
3030
viper.SetDefault("mqtt_url", "tcp://mqtt:1883")
31-
viper.SetDefault("mqtt_qos", 0)
31+
viper.SetDefault("mqtt_qos", 1)
3232
viper.SetDefault("mqtt_topic_receive", "galactic/default/receive")
3333
viper.SetDefault("mqtt_topic_send", "galactic/default/send")
3434
if configFile != "" {

0 commit comments

Comments
 (0)