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 444300d commit c0ef5d2Copy full SHA for c0ef5d2
src/bentoml_cli/secret.py
@@ -97,7 +97,7 @@ def parse_kvs_argument_callback(
97
"""
98
key_vals: t.List[tuple[str, str]] = []
99
for key_val in value:
100
- key, val = key_val.split("=")
+ key, val = key_val.split("=", maxsplit=1)
101
if not key or not val:
102
raise click.BadParameter(f"Invalid key-value pair: {key_val}")
103
if val.startswith("@"):
0 commit comments