-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send fake heartbeats to verify channel is still open for long running workers #28
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few questions, but looks good generally :)
@ezzatron we would like to test this with you to verify it actually solves the post-docker-sleep-slow-service-recovery problem.
src/Amqp/Rpc/AmqpRpcServer.php
Outdated
@@ -142,7 +142,12 @@ public function run() | |||
foreach ($this->procedures as $procedureName => $procedure) { | |||
$this->unbind($procedureName); | |||
} | |||
} | |||
} //else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this else
should be uncommented?
|
||
interface DeclarationManagerInterface | ||
{ | ||
public function exchange(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any need to retain exchange()
on this interface?
No description provided.