Skip to content

Commit

Permalink
Remove time limit temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
64json committed Feb 18, 2019
1 parent b9cf2c0 commit 9555c52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/controllers/tracers.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const trace = lang => (req, res, next) => {
const containerName = uuid.v4();
let killed = false;
const timer = setTimeout(() => {
execute(`docker kill ${containerName}`).then(() => {
/* execute(`docker kill ${containerName}`).then(() => {
killed = true;
});
});*/
}, timeLimit);
return execute([
'docker run --rm',
Expand Down

0 comments on commit 9555c52

Please sign in to comment.