瀏覽代碼

faltaba una llamada

Luciano Andrade 7 年之前
父節點
當前提交
77f0236374
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      Services/ProducerService.php

+ 4 - 0
Services/ProducerService.php

@@ -78,6 +78,10 @@ class ProducerService
         $entityRepository = $entityManager->getRepository($entityClass);
         $entity = $entityRepository->find($entityId);
         if (in_array($entityClass, WorkFlowEntityClasses::getConstants())) {
+	    $routing_key = "";
+            if(getenv("AMQP_KEY") !== false){
+                $routing_key = getenv("AMQP_KEY");
+            }
             $this->publishMessage($action, $entity);
         }
     }