extended java & isolate logging, java fix, local test fix
All checks were successful
Build and Push Docker Images / build (src/LiquidCode.Tester.Gateway/Dockerfile, git.nullptr.top/liquidcode/liquidcode-tester-gateway-roman, gateway) (push) Successful in 15m53s
Build and Push Docker Images / build (src/LiquidCode.Tester.Worker/Dockerfile, git.nullptr.top/liquidcode/liquidcode-tester-worker-roman, worker) (push) Successful in 6m32s

This commit is contained in:
prixod
2025-12-29 22:16:19 +04:00
parent f009c95645
commit d2ba1d4a4f
3 changed files with 63 additions and 13 deletions

View File

@@ -163,12 +163,16 @@ public class IsolateService
if (!string.IsNullOrEmpty(options.StdoutFile))
{
args.Add($"--stdout={MapSandboxPath(options.StdoutFile, options.BoxId)}");
var mappedStdout = MapSandboxPath(options.StdoutFile, options.BoxId);
_logger.LogDebug("Stdout mapping: {Original} -> {Mapped}", options.StdoutFile, mappedStdout);
args.Add($"--stdout={mappedStdout}");
}
if (!string.IsNullOrEmpty(options.StderrFile))
{
args.Add($"--stderr={MapSandboxPath(options.StderrFile, options.BoxId)}");
var mappedStderr = MapSandboxPath(options.StderrFile, options.BoxId);
_logger.LogDebug("Stderr mapping: {Original} -> {Mapped}", options.StderrFile, mappedStderr);
args.Add($"--stderr={mappedStderr}");
}
// Working directory