Skip to content

Commit ee60055

Browse files
Merge pull request #72 from CS3219-AY2425S1/solomon/fix-python-sandbox-container-not-found
Fix python sandbox container not found
2 parents 3396c29 + 1bde600 commit ee60055

File tree

1 file changed

+1
-1
lines changed
  • apps/execution-service/execution/python

1 file changed

+1
-1
lines changed

apps/execution-service/execution/python/python.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ func RunPythonCode(code string, input string) (string, string, error) {
1111
cmd := exec.Command(
1212
"docker", "run", "--rm",
1313
"-i", // allows for standard input to be passed in
14-
"python-sandbox",
14+
"apps-python-sandbox",
1515
"python", "-c", code,
1616
)
1717

0 commit comments

Comments
 (0)