Skip to content
Snippets Groups Projects
Commit 255f989c authored by David Baker's avatar David Baker
Browse files

turns uris config options should append since it's a list

parent e60353c4
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ class VoipConfig(Config):
super(VoipConfig, cls).add_arguments(parser)
group = parser.add_argument_group("voip")
group.add_argument(
"--turn-uris", type=str, default=None,
"--turn-uris", type=str, default=None, action='append',
help="The public URIs of the TURN server to give to clients"
)
group.add_argument(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment