Reduce the gap between blend-files checks to 1 second
This commit is contained in:
parent
a86d8ff966
commit
80c4de0637
2 changed files with 3 additions and 2 deletions
|
@ -233,4 +233,4 @@ while True:
|
||||||
|
|
||||||
create_container_binaries()
|
create_container_binaries()
|
||||||
create_container_applications()
|
create_container_applications()
|
||||||
time.sleep(15)
|
time.sleep(1)
|
||||||
|
|
|
@ -16,7 +16,8 @@ function create_container () {
|
||||||
'cmd': `blend create-container -cn ${container_name} -d ${container_distro} \
|
'cmd': `blend create-container -cn ${container_name} -d ${container_distro} \
|
||||||
&& echo 'created container successfully (exiting automatically in 5 seconds)' \
|
&& echo 'created container successfully (exiting automatically in 5 seconds)' \
|
||||||
|| echo 'container creation failed (exiting automatically in 5 seconds)';
|
|| echo 'container creation failed (exiting automatically in 5 seconds)';
|
||||||
sleep 5` });
|
sleep 5` })
|
||||||
|
$('#inputContainerName').val('')
|
||||||
ipc.on('container-created', () => {
|
ipc.on('container-created', () => {
|
||||||
worker.postMessage('update-list')
|
worker.postMessage('update-list')
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue