mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Webpublisher - headless publish shouldn't be blocking operation (#5177)
* OP-6239 - headless publish from webpublisher shouldn't be blocking subprocess.call is blocking, which resulted in UI non responsiveness as it was waiting for publish to finish. * OP-6239 - revert of typo
This commit is contained in:
parent
f76e32940a
commit
cca689e48f
1 changed files with 1 additions and 1 deletions
|
|
@ -293,7 +293,7 @@ class BatchPublishEndpoint(WebpublishApiEndpoint):
|
|||
log.debug("Adding to queue")
|
||||
self.resource.studio_task_queue.append(args)
|
||||
else:
|
||||
subprocess.call(args)
|
||||
subprocess.Popen(args)
|
||||
|
||||
return Response(
|
||||
status=200,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue