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 88cef2c commit 8bbd587Copy full SHA for 8bbd587
netbox_diode_plugin/plugin_config.py
@@ -23,7 +23,7 @@ def _parse_diode_target(target: str) -> tuple[str, str, bool]:
23
parsed_target = urlparse(target)
24
25
if parsed_target.scheme not in ["grpc", "grpcs", "http", "https"]:
26
- raise ValueError("target should start with grpc:// or grpcs:// or http:// or https://")
+ raise ValueError("target should start with grpc://, grpcs://, http:// or https://")
27
28
tls_verify = parsed_target.scheme in ["grpcs", "https"]
29
0 commit comments