Authored by 姜枫

fix state bug

... ... @@ -248,7 +248,7 @@ r.get('/state', async (ctx) => {
let redeploy = false;
let deploys = _.map(doc, d => {
if (d.state !== 'success' && d.state !== 'fail') {
if (d.state !== 'running' && d.state !== 'fail') {
finish = false;
}
... ...