Skip to content

Commit

Permalink
fix(be): python exec args (#1425)
Browse files Browse the repository at this point in the history
* fix(be): python exec args

* fix(be): python exec file name

* fix(be): comments
  • Loading branch information
lshtar13 authored Feb 19, 2024
1 parent 764410a commit c4f227a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iris/src/service/sandbox/langConfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func NewLangConfig(file file.FileManager, javaPolicyPath string) *langConfig {
var pyConfig = config{
Language: PYTHON,
SrcName: "solution.py",
ExeName: "__pycache__/solution.cpython-38.pyc", // TODO: 파이썬 버전 확인
ExeName: "solution.py", // TODO: Python version에 따라 __pycache__ 파일 버전 이름이 달라짐...
MaxCompileCpuTime: 3000,
MaxCompileRealTime: 10000,
MaxCompileMemory: 128 * 1024 * 1024,
Expand Down

0 comments on commit c4f227a

Please sign in to comment.