You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the SplinterCon demo (see ooni/probe-cli#1423), I noticed that we're not able to parse integer options from OONI Run v2 descriptors. This happens because they're parsed as float64 and the code that is setting options is confused by this fact, given that it only expects integers in input.
The text was updated successfully, but these errors were encountered:
This commit ensures we can parse integer values provided using OONI Run
v2 descriptors into actual integers.
Values are originally parsed as float64, so we need to add a specific
conversion case for that scenario.
Diff extracted from: #1423Closesooni/probe#2645
This commit ensures we can parse integer values provided using OONI Run
v2 descriptors into actual integers.
Values are originally parsed as float64, so we need to add a specific
conversion case for that scenario.
Diff extracted from: ooni#1423Closesooni/probe#2645
During the SplinterCon demo (see ooni/probe-cli#1423), I noticed that we're not able to parse integer options from OONI Run v2 descriptors. This happens because they're parsed as float64 and the code that is setting options is confused by this fact, given that it only expects integers in input.
The text was updated successfully, but these errors were encountered: