fixed tag prepend hardcoded issue

This commit is contained in:
2017-10-08 20:42:19 -04:00
parent 8c64959482
commit b45f45153f
2 changed files with 12 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
const request = require('request');
var till = 5;
var till = 15;
var completed = 0;
var errors = 0;
@@ -9,7 +9,8 @@ for(let i=0; i<till; i++){
let httpOptions = {
url: 'http://codeland.bytedev.co:2000/api/run',
form: {
code: `python3 -c "print(1)"`
code: `python3 -c "print(1)"`,
once: true,
}
};
request.post(httpOptions, function(error, response, body){