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
When running the win log requester, it marks every successful request as a warning because of the line:
if response.status_code != 200 or response.status_code != 204:
in beeswax/tools/win_events/win_log_requester.py:153
beeswax/tools/win_events/win_log_requester.py:153
The fix for this would be to change it to be an and instead of an or.
and
or
The text was updated successfully, but these errors were encountered:
Nice catch.
I'd suggest:
if response.status_code not in {200, 204}:
We'll make the fix.
Sorry, something went wrong.
No branches or pull requests
When running the win log requester, it marks every successful request as a warning because of the line:
in
beeswax/tools/win_events/win_log_requester.py:153
The fix for this would be to change it to be an
and
instead of anor
.The text was updated successfully, but these errors were encountered: