increase kill timeout (#4002)

This commit is contained in:
Parag Jain 2017-03-08 11:00:34 -06:00 committed by Gian Merlino
parent 960769c583
commit c155d9a5e9
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ var killTask = function(taskId) {
url: '/druid/indexer/v1/task/'+ taskId +'/shutdown',
data: ''
}).done(function(data) {
setTimeout(function() { location.reload(true) }, 75);
setTimeout(function() { location.reload(true) }, 750);
}).fail(function(data) {
alert('Kill request failed with status: '+data.status+' please check overlord logs');
})