We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57fbd1e commit 4fb3603Copy full SHA for 4fb3603
python/neutron-understack/neutron_understack/undersync.py
@@ -1,4 +1,5 @@
1
import pathlib
2
+import urllib.parse
3
from functools import cached_property
4
5
import requests
@@ -57,6 +58,7 @@ def client(self):
57
58
return session
59
60
def _undersync_post(self, action: str, vlan_group: str) -> requests.Response:
61
+ vlan_group = urllib.parse.quote(vlan_group, safe="")
62
response = self.client.post(
63
f"{self.api_url}/v1/vlan-group/{vlan_group}/{action}", timeout=self.timeout
64
)
0 commit comments