push notifications when product is in running state

This commit is contained in:
rmanach 2023-09-26 11:26:31 +02:00
parent e9b98ae716
commit 7d768127a6

View File

@ -80,6 +80,9 @@ class DeploymentTask(AbortableTask):
self.deploy.status = Status.RUNNING.name
self.deploy.save()
Event.send(self.deploy)
Event.send_details(self.deploy, 0)
match self.deploy.type:
case Type.SLIM.name:
self.run_slim()