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
The pulsar.Result enum is just imported from the C extension. See
pulsar.Result
pulsar-client-python/pulsar/__init__.py
Line 50 in daabc67
Running help(pulsar.Result) could only show the underlying C error codes like
help(pulsar.Result)
| | AlreadyClosed = <Result.AlreadyClosed: 15> | | AuthenticationError = <Result.AuthenticationError: 7> | | AuthorizationError = <Result.AuthorizationError: 8> | | BrokerMetadataError = <Result.BrokerMetadataError: 10> | | BrokerPersistenceError = <Result.BrokerPersistenceError: 11>
The error code should be well documented. Otherwise users might not know how to handle these error codes.
For now, users can refer https://github.com/apache/pulsar-client-cpp/blob/main/include/pulsar/Result.h for the meaning of error codes.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
pulsar.Result
enum is just imported from the C extension. Seepulsar-client-python/pulsar/__init__.py
Line 50 in daabc67
Running
help(pulsar.Result)
could only show the underlying C error codes likeThe error code should be well documented. Otherwise users might not know how to handle these error codes.
For now, users can refer https://github.com/apache/pulsar-client-cpp/blob/main/include/pulsar/Result.h for the meaning of error codes.
The text was updated successfully, but these errors were encountered: