We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Whenever I try to publish the message, i get processing timeout at the following line
public function dispatch(string $name, mixed $payload, ?float $timeout = null) { if ($timeout === null) { $timeout = $this->configuration->timeout; } $context = (object) [ 'processed' => false, 'result' => null, 'threshold' => microtime(true) + $timeout, ]; $this->request($name, $payload, function ($result) use ($context) { $context->processed = true; $context->result = $result; }); while (!$context->processed && microtime(true) < $context->threshold) { $this->process(); } if (!$context->processed) { throw new LogicException("Processing timeout"); // this causes exception } return $context->result; }
What should I do in this case? I'm running nats in docker and nats-box is not only able to onnect but also an publish mesages on that stream
The text was updated successfully, but these errors were encountered:
it's probably more a server issue, than a client one. but im not 100% sure
we still see stream issue now&then
context_exception_file: vendor/basis-company/nats/src/Connection.php:138 context_exception_message: Error sending data
but we have a fallback MySQL connection, so OK
Sorry, something went wrong.
No branches or pull requests
Whenever I try to publish the message, i get processing timeout at the following line
What should I do in this case?
I'm running nats in docker and nats-box is not only able to onnect but also an publish mesages on that stream
The text was updated successfully, but these errors were encountered: