Skip to content

Commit

Permalink
[v0.2.1] Fix production config bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aqiongbei committed Apr 27, 2019
1 parent ca6792f commit 91cbe93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if (process.env.NODE_ENV == 'debug') {
})();
}

let cron_job = cron.schedule(attack.time, async function(){
let cron_job = cron.schedule(ATTACK.time, async function(){
await run(ATTACK);
}, false);

Expand Down
2 changes: 1 addition & 1 deletion config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"times": 6,
"time": "0 2 * * * *",
"web_type": "baidu_lxb",
"type_type": "call", // "comment"
"task_type": "call", // "comment"
"interval": 300000
},
"chromium": {
Expand Down

0 comments on commit 91cbe93

Please sign in to comment.