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 c991baf commit b2910e0Copy full SHA for b2910e0
kubemq/queues/queues_send_result.py
@@ -62,3 +62,8 @@ def decode(cls, result: SendQueueMessageResult) -> "QueueSendResult":
62
63
class Config:
64
arbitrary_types_allowed = True
65
+ def __str__(self):
66
+ return (
67
+ f"QueueSendResult: id={self.id}, sent_at={self.sent_at}, expired_at={self.expired_at}, "
68
+ f"delayed_to={self.delayed_to}, is_error={self.is_error}, error={self.error}"
69
+ )
0 commit comments