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
where url is the URL of an InfluxDB instance that is unreachable (i.e. results in a connection error), the WritePoint() method may attempt an implicit deferred retry (instead of immediately returning a connection error), even though MaxRetries was set to 0.
Expected behavior:
The WritePoint() method should always return an error in this case.
Actual behavior:
No error is returned.
Specifications:
Client Version: 2.2.2
InfluxDB Version: n/a (testing against an unreachable InfluxDB instance)
Platform: MacOS 10.15.7
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
Given the following client code snippet
where
url
is the URL of an InfluxDB instance that is unreachable (i.e. results in a connection error), theWritePoint()
method may attempt an implicit deferred retry (instead of immediately returning a connection error), even though MaxRetries was set to 0.Expected behavior:
The
WritePoint()
method should always return an error in this case.Actual behavior:
No error is returned.
Specifications:
The text was updated successfully, but these errors were encountered: