mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: removed unused externalizedProperties attr from OpenviduConfig
parent
f3d2916656
commit
3e6ff0cc98
|
@ -190,7 +190,6 @@ public class OpenviduConfig {
|
||||||
public static List<String> kmsUrisList = new ArrayList<>();
|
public static List<String> kmsUrisList = new ArrayList<>();
|
||||||
public static List<Header> webhookHeadersList = new ArrayList<>();
|
public static List<Header> webhookHeadersList = new ArrayList<>();
|
||||||
public static List<CDREventName> webhookEventsList = new ArrayList<>();
|
public static List<CDREventName> webhookEventsList = new ArrayList<>();
|
||||||
public static Properties externalizedProperties;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
protected Environment env;
|
protected Environment env;
|
||||||
|
@ -365,10 +364,6 @@ public class OpenviduConfig {
|
||||||
return !this.springConfigLocation.isEmpty();
|
return !this.springConfigLocation.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Properties getExternalizedProperties() {
|
|
||||||
return externalizedProperties;
|
|
||||||
}
|
|
||||||
|
|
||||||
public URI checkWebsocketUri(String uri) throws Exception {
|
public URI checkWebsocketUri(String uri) throws Exception {
|
||||||
try {
|
try {
|
||||||
if (!uri.startsWith("ws://") || uri.startsWith("wss://")) {
|
if (!uri.startsWith("ws://") || uri.startsWith("wss://")) {
|
||||||
|
|
Loading…
Reference in New Issue