Skip to content

Commit 63db3fc

Browse files
committed
reduce queue check interval to 0.5s
1 parent ad0bb3f commit 63db3fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/app/services/processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __process(self, stop_event: Event):
4343

4444
if not queue_item: # Probably stopping
4545
# do not hammer the queue
46-
time.sleep(1)
46+
time.sleep(0.5)
4747
continue
4848

4949
graph_execution_state = (

0 commit comments

Comments
 (0)