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
If you call GetUsersAsync() on the UserClientModule when no users have been defined on the InfluxDB server the UserResponseParser.GetUsers() method will throw an unhandled exception.
The code tries to send back an empty list when there are no results by copying the same technique from other response parsers but in this case the InfluxDB server returns a series with no values which doesn't get caught by the current conditional logic.
The fix is pretty simple and I've submitted pull request #33 to address it.
The text was updated successfully, but these errors were encountered:
If you call
GetUsersAsync()
on theUserClientModule
when no users have been defined on the InfluxDB server theUserResponseParser.GetUsers()
method will throw an unhandled exception.The code tries to send back an empty list when there are no results by copying the same technique from other response parsers but in this case the InfluxDB server returns a series with no values which doesn't get caught by the current conditional logic.
The fix is pretty simple and I've submitted pull request #33 to address it.
The text was updated successfully, but these errors were encountered: