Skip to content

Commit

Permalink
move proxy config
Browse files Browse the repository at this point in the history
  • Loading branch information
Technoboy- committed Oct 22, 2024
1 parent 82c3ca7 commit 43b785b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
@Setter
public class MQTTServerConfiguration extends MQTTCommonConfiguration {

@FieldContext(
category = CATEGORY_MQTT,
required = true,
doc = "Listener for the MQTT Server."
)
private String mqttListeners = "mqtt://127.0.0.1:1883";

@FieldContext(
category = CATEGORY_MQTT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ public class MQTTCommonConfiguration extends ServiceConfiguration {
@Category
public static final String CATEGORY_WS = "MQTT over WebSocket";

@FieldContext(
category = CATEGORY_MQTT,
required = true,
doc = "Listener for the MQTT Server."
)
private String mqttListeners = "mqtt://127.0.0.1:1883";

@FieldContext(
category = CATEGORY_MQTT,
required = false,
Expand Down

0 comments on commit 43b785b

Please sign in to comment.