1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-21 09:34:08 +03:00

Removed OP_START_COMPLETED from fixed userservice generic

This commit is contained in:
Adolfo Gómez García 2024-05-09 02:11:10 +02:00
parent 77e45099d1
commit 83abebd574
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -262,7 +262,7 @@ class FixedUserService(services.UserService, autoserializable.AutoSerializable,
self.cache.put('ready', '1', consts.cache.SHORT_CACHE_TIMEOUT // 2) # short cache timeout
self._queue = [Operation.FINISH]
else:
self._queue = [Operation.START, Operation.START_COMPLETED, Operation.FINISH]
self._queue = [Operation.START, Operation.FINISH]
except exceptions.NotFoundError:
return self.error('Machine not found')
except Exception as e: