Skip to content

Commit

Permalink
Merge pull request #72 from CS3219-AY2425S1/solomon/fix-python-sandbo…
Browse files Browse the repository at this point in the history
…x-container-not-found

Fix python sandbox container not found
  • Loading branch information
solomonng2001 authored Nov 9, 2024
2 parents 3396c29 + 1bde600 commit ee60055
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
"python-sandbox",
"apps-python-sandbox",
"python", "-c", code,
)

Expand Down

0 comments on commit ee60055

Please sign in to comment.