There was an error while loading. Please reload this page.
2 parents 50eb57d + d39d722 commit 7bf0757Copy full SHA for 7bf0757
1 file changed
src/emd/sdk/deploy.py
@@ -2,6 +2,7 @@
2
import os
3
import io
4
import time
5
+import shlex
6
from typing import Optional
7
8
import boto3
@@ -404,7 +405,7 @@ def deploy_local(
404
405
f" --backend_type {engine_type}"
406
f" --framework_type {framework_type}"
407
f" --region '{LOCAL_REGION}'"
- f" --extra_params '{extra_params}'"
408
+ f" --extra_params {shlex.quote(extra_params)}"
409
)
410
logger.info(f"pipeline cmd: {pipeline_cmd}")
411
assert (
0 commit comments