-
Notifications
You must be signed in to change notification settings - Fork 145
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
Refactor[BMQ,MQB,CI]: various improvements #604
Conversation
678098
commented
Feb 10, 2025
•
edited
Loading
edited
- Allows to run ITs on Solaris
- Use typing hints compatible with legacy Python versions
- Remove outdated modules log configuration
- Better naming for variables
- Fix missing cores dir case
aa7d86b
to
08f9cf2
Compare
Signed-off-by: Evgeny Malygin <[email protected]>
08f9cf2
to
6fa3eb2
Compare
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.
👍
"core pattern '%s' does not contain process id, cores will not be saved", | ||
pattern, | ||
) | ||
except FileExistsError: |
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.
This was a wrong type of error
@@ -64,7 +64,7 @@ def post_n_msgs( | |||
for _ in range(task.num): | |||
res = producer.post(task.uri, payload=["msg"], wait_ack=True) | |||
assert Client.e_SUCCESS == res | |||
producer.close(task.uri) | |||
producer.close(task.uri, succeed=True) |
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.
This close was nonblocking, it was possible to execute the next command before producer was actually closed