-
Notifications
You must be signed in to change notification settings - Fork 139
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
Fix Firefox log parser #667
Conversation
fc91727
to
cfe07aa
Compare
elif msg['message'].startswith('nsSocketTransport::SendStatus '): | ||
match = re.search(r'^nsSocketTransport::SendStatus \[' | ||
r'this=(?P<socket>[\w\d]+) ' | ||
r'status=(?P<status>[\w\d]+)', msg['message']) | ||
if match: | ||
socket = match.groupdict().get('socket') | ||
status = match.groupdict().get('status') | ||
if status == '804b0007': | ||
if status in ['804b0007', '4b0007']: |
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.
Added this based on nsresult::NS_NET_STATUS_CONNECTING_TO
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.
LGTM. I assume it is intended, but the OCSP pref change will be a behavior change and the OCSP time for non-stapled origins will be hidden after the change.
This fixes Firefox log parser and add support for latest selenium:
Before:
After: