Closed Styloy closed 6 months ago
Noted. I did not test with Unstable, so I'll add that logic into the next release.
Incorporated fix into v0.1.5. This should no longer be an issue once that version is released.
v0.1.5 is now released and available. Closing until someone reports this as a continued issue.
I've read the documentation.
Operating System
TrueNAS (should be platform agnostic)
Your Bug Report
there is a parsing issue in test_ta_connection (in both scanner and agent), when using an unstable build of TA it chokes due to "-unstable" being appended in the response of /api/ping.
on my instance, I've changed the following as a quick and dirty fix. I can PR this if you feel this is suitable. ta_version = [int(x) for x in response['version'][1:].split(".")] to ta_version = [int(x) for x in response['version'][1:].split(".").rstrip("-unstable")]
Relevant log output
Anything else?
No response