We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdfd51e commit cd00aecCopy full SHA for cd00aec
packages/service-library/src/servicelib/rabbitmq/_errors.py
@@ -10,12 +10,12 @@ class BaseRPCError(OsparcErrorMixin, RuntimeError):
10
11
12
class RPCNotInitializedError(BaseRPCError):
13
- code = f"{_ERROR_PREFIX}.not_started"
+ code = f"{_ERROR_PREFIX}.not_started" # type: ignore[assignment]
14
msg_template = "Please check that the RabbitMQ RPC backend was initialized!"
15
16
17
class RemoteMethodNotRegisteredError(BaseRPCError):
18
- code = f"{_ERROR_PREFIX}.remote_not_registered"
+ code = f"{_ERROR_PREFIX}.remote_not_registered" # type: ignore[assignment]
19
msg_template = (
20
"Could not find a remote method named: '{method_name}'. "
21
"Message from remote server was returned: {incoming_message}. "
0 commit comments