Commit ea3c13e8ffd0af5bd693ee50b203be53b45a5461
1 parent
9fc86d11
Exists in
master
and in
21 other branches
[Fixed #11] Correção de erro de vinculação de portas do Gearman
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
rn/PendenciasTramiteRN.php
@@ -204,7 +204,7 @@ class PendenciasTramiteRN extends InfraRN { | @@ -204,7 +204,7 @@ class PendenciasTramiteRN extends InfraRN { | ||
204 | if(isset($objPendencia)) { | 204 | if(isset($objPendencia)) { |
205 | 205 | ||
206 | $client = new GearmanClient(); | 206 | $client = new GearmanClient(); |
207 | - $client->addServer(); | 207 | + $client->addServer("127.0.0.1", 4730); |
208 | 208 | ||
209 | $strWorkload = strval($objPendencia->getNumIdentificacaoTramite()); | 209 | $strWorkload = strval($objPendencia->getNumIdentificacaoTramite()); |
210 | 210 |
rn/ProcessarPendenciasRN.php
@@ -23,7 +23,7 @@ class ProcessarPendenciasRN extends InfraAgendamentoTarefa | @@ -23,7 +23,7 @@ class ProcessarPendenciasRN extends InfraAgendamentoTarefa | ||
23 | public function __construct() | 23 | public function __construct() |
24 | { | 24 | { |
25 | $this->objGearmanWorker = new GearmanWorker(); | 25 | $this->objGearmanWorker = new GearmanWorker(); |
26 | - $this->objGearmanWorker->addServer(); | 26 | + $this->objGearmanWorker->addServer("127.0.0.1", 4730); |
27 | $this->configurarCallbacks(); | 27 | $this->configurarCallbacks(); |
28 | } | 28 | } |
29 | 29 | ||
@@ -159,7 +159,7 @@ class ProcessarPendenciasRN extends InfraAgendamentoTarefa | @@ -159,7 +159,7 @@ class ProcessarPendenciasRN extends InfraAgendamentoTarefa | ||
159 | static function processarTarefa($strNomeTarefa, $strWorkload) | 159 | static function processarTarefa($strNomeTarefa, $strWorkload) |
160 | { | 160 | { |
161 | $objClient = new GearmanClient(); | 161 | $objClient = new GearmanClient(); |
162 | - $objClient->addServer(); | 162 | + $objClient->addServer("127.0.0.1", 4730); |
163 | $objClient->doBackground($strNomeTarefa, $strWorkload); | 163 | $objClient->doBackground($strNomeTarefa, $strWorkload); |
164 | } | 164 | } |
165 | } | 165 | } |