reset websocket port to 14001

This commit is contained in:
unknown
2020-10-27 16:45:21 +08:00
parent 9f7a4a3a46
commit eea5688f15

View File

@@ -5,10 +5,10 @@ import com.mogo.commons.debug.DebugConfig;
public class WebSocketConstant {
private static final String HOST_DEV = "ws://62.234.196.121:4001/ws";
private static final String HOST_QA = "ws://62.234.196.121:4001/ws";
private static final String HOST_DEMO = "ws://62.234.196.121:4001/ws";
private static final String HOST_RELEASE = "ws://62.234.196.121:4001/ws";
private static final String HOST_DEV = "ws://62.234.196.121:14001/ws";
private static final String HOST_QA = "ws://62.234.196.121:14001/ws";
private static final String HOST_DEMO = "ws://62.234.196.121:14001/ws";
private static final String HOST_RELEASE = "ws://62.234.196.121:14001/ws";
public static String getSocketServer(){
switch (DebugConfig.getNetMode()){