mirror of https://github.com/apache/druid.git
increase kill timeout (#4002)
This commit is contained in:
parent
960769c583
commit
c155d9a5e9
|
@ -9,7 +9,7 @@ var killTask = function(taskId) {
|
||||||
url: '/druid/indexer/v1/task/'+ taskId +'/shutdown',
|
url: '/druid/indexer/v1/task/'+ taskId +'/shutdown',
|
||||||
data: ''
|
data: ''
|
||||||
}).done(function(data) {
|
}).done(function(data) {
|
||||||
setTimeout(function() { location.reload(true) }, 75);
|
setTimeout(function() { location.reload(true) }, 750);
|
||||||
}).fail(function(data) {
|
}).fail(function(data) {
|
||||||
alert('Kill request failed with status: '+data.status+' please check overlord logs');
|
alert('Kill request failed with status: '+data.status+' please check overlord logs');
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue