diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-01-26 19:09:26 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-01-26 19:09:26 +0100 |
commit | a68a1e1da77f6f87a1c315d057edc59a31746d1c (patch) | |
tree | 53916f1aa49dd43315dfd6d9bc1d6b08beb3569a /app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch | |
parent | 3563fb5994944555c67aa8eb0246e1b747741047 (diff) | |
download | infrastructure-a68a1e1da77f6f87a1c315d057edc59a31746d1c.tar.gz infrastructure-a68a1e1da77f6f87a1c315d057edc59a31746d1c.zip |
Migrate jitsi + WIP backup doc
Diffstat (limited to 'app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch')
-rw-r--r-- | app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch b/app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch new file mode 100644 index 0000000..575d93f --- /dev/null +++ b/app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch @@ -0,0 +1,40 @@ +From 01507442620e5a57624c921b508eac7d572440d0 Mon Sep 17 00:00:00 2001 +From: Quentin Dufour <quentin@deuxfleurs.fr> +Date: Tue, 25 Jan 2022 14:46:22 +0100 +Subject: [PATCH] Remove deprecated argument + +--- + .../main/kotlin/org/jitsi/videobridge/Main.kt | 17 ----------------- + 1 file changed, 17 deletions(-) + +diff --git a/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt b/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt +index 4f6cb78..3db00f2 100644 +--- a/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt ++++ b/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt +@@ -52,23 +52,6 @@ import org.jitsi.videobridge.websocket.singleton as webSocketServiceSingleton + fun main(args: Array<String>) { + val logger = LoggerImpl("org.jitsi.videobridge.Main") + +- // We only support command line arguments for backward compatibility. The --apis options is the last one supported, +- // and it is only used to enable/disable the REST API (XMPP is only controlled through the config files). +- // TODO: fully remove support for --apis +- CmdLine().apply { +- parse(args) +- getOptionValue("--apis")?.let { +- logger.warn( +- "A deprecated command line argument (--apis) is present. Please use the config file to control the " + +- "REST API instead (see rest.md). Support for --apis will be removed in a future version." +- ) +- System.setProperty( +- Videobridge.REST_API_PNAME, +- it.contains(Videobridge.REST_API).toString() +- ) +- } +- } +- + setupMetaconfigLogger() + + setSystemPropertyDefaults() +-- +2.33.1 + |