Skip to content

fix(measurements): Ignore case when parsing probe_asn field #864

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ async def list_measurements(
if (
probe_asn is not None
and isinstance(probe_asn, str)
and probe_asn.startswith("AS")
and probe_asn.lower().startswith("as")
):
probe_asn = int(probe_asn[2:])
software_versions = None
Expand Down