telemetry check doesn't support strings with multiple spaces #790
Comments
ryanatball
added a commit
that referenced
this issue
May 15, 2018
closes #790. Support spaces in telemetry check
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Checking a string like "this is a/s/s/stest" is concatenated to "this is a/stest".
Suggested change in extract.rb, function extract_fields_from_check_text:
from
split_string = text.split
to
split_string = text.split(/ /,5)
The text was updated successfully, but these errors were encountered: