Skip to content

Commit

Permalink
fix: python sandbox naming
Browse files Browse the repository at this point in the history
The naming for the python sandbox should be prefixed with "apps_"
instead of "apps-"
  • Loading branch information
tituschewxj committed Nov 12, 2024
1 parent 31a6bd1 commit e888247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/execution-service/execution/python/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func RunPythonCode(code string, input string) (string, string, error) {
cmd := exec.Command(
"docker", "run", "--rm",
"-i", // allows for standard input to be passed in
"apps-python-sandbox",
"apps_python-sandbox",
"python", "-c", code,
)

Expand Down

0 comments on commit e888247

Please sign in to comment.