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
I don't know if this should really considered a bug, but I scratched my head quite a lot on this, before understanding what was happening so here it is:
calling list_databases immediately after creation of an empty influxdb docker throws an error.
I guess the influxdb didn't create its default database _internal yet, so the field "values" doesn't exist in influx's responses
On my computer, it takes 10 to 15 seconds for the database to initialize
julia>beginglobal container_id =chomp(read(`docker run -d --rm -p 8086:8086 influxdb`, String))
a =true@timewhile a
a =trylist_databases(InfluxServer("localhost"))
falsecatchsleep(1)
trueendendend12.534306 seconds (5.61 k allocations:529.078 KiB)
At least a more explicit error message would be helpful
The text was updated successfully, but these errors were encountered:
I don't know if this should really considered a bug, but I scratched my head quite a lot on this, before understanding what was happening so here it is:
calling
list_databases
immediately after creation of an empty influxdb docker throws an error.I guess the influxdb didn't create its default database
_internal
yet, so the field"values"
doesn't exist in influx's responsesOn my computer, it takes 10 to 15 seconds for the database to initialize
At least a more explicit error message would be helpful
The text was updated successfully, but these errors were encountered: