You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix JSON argument quoting to match bash implementation exactly
Resolve the quoting issue identified in comment #323 where Python generated:
- "'{"kv_connector":"NixlConnector","kv_role":"kv_both"}'" (broken)
Now correctly generates like bash implementation:
- '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' (working)
- Detect arguments that already have single quotes (JSON strings)
- Use them as-is without additional double quote wrapping
- Only wrap regular arguments in double quotes
Addresses the last outstanding reviewer concern before final approval.
0 commit comments