Skip to content

Commit f318d73

Browse files
committed
Update CONNECT_WATCH_URL to production endpoint
1 parent 7996c29 commit f318d73

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
allprojects {
88
group = "com.minekube.connect"
9-
version = "0.2.10"
9+
version = "0.2.11"
1010
description =
1111
"Connects the server/proxy to the global Connect network to reach more players while also supporting online mode server, bungee or velocity mode. Visit https://minekube.com/connect"
1212
}

core/src/main/java/com/minekube/connect/watch/WatchClient.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@
4545
public class WatchClient {
4646
private static final String ENDPOINT_HEADER = "Connect-Endpoint";
4747
private static final String WATCH_URL = System.getenv().getOrDefault(
48-
// TODO switch to production endpoint when launched
49-
// Use the demo endpoint for now
50-
"CONNECT_WATCH_URL", "wss://demo.minekube.net/watch");
48+
"CONNECT_WATCH_URL", "wss://watch-connect.minekube.net");
5149

5250
private final OkHttpClient httpClient;
5351
private final ConnectConfig config;

0 commit comments

Comments
 (0)