Skip to content

Commit 62b58ef

Browse files
author
Christos Vasilakis
committed
iot.eclipse is replaced with mqtt.eclipse since the former dns name is discontinued.
1 parent 9d632b9 commit 62b58ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ingress_bridges/src/main/java/swim/basic/mqtt/DataSourcePopulator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public DataSourcePopulator(String broker) throws MqttException {
3333
}
3434

3535
public static void main(String[] args) throws MqttException {
36-
final DataSourcePopulator pop = new DataSourcePopulator("tcp://iot.eclipse.org:1883");
36+
final DataSourcePopulator pop = new DataSourcePopulator("tcp://mqtt.eclipse.org:1883");
3737
pop.populate();
3838
}
3939

ingress_bridges/src/main/java/swim/basic/mqtt/IngressBridge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void deliveryComplete(IMqttDeliveryToken token) {
6161
}
6262

6363
public static void main(String[] args) throws MqttException {
64-
final IngressBridge lis = new IngressBridge("warp://localhost:9001", "tcp://iot.eclipse.org:1883");
64+
final IngressBridge lis = new IngressBridge("warp://localhost:9001", "tcp://mqtt.eclipse.org:1883");
6565
lis.listen();
6666
}
6767

0 commit comments

Comments
 (0)