influxdb-java
influxdb-java copied to clipboard
question of test case: precision()
hello, i test the case precision() in src/test/java/org/influxdb/impl/BatchProcessorTest.java it should execute like below:
- CREATE DATABASE "write_unittest_1659064333553"
- CREATE RETENTION POLICY somePolicy ON write_unittest_1659064333553 DURATION 30h REPLICATION 2 DEFAULT
- POST /write?db=write_unittest_1659064333553&rp=somePolicy&precision=s&consistency=one the point
- DROP DATABASE "write_unittest_1659064333553"'
but, actually it execute look like image below

the drop action before the write action!
i don't know it is my fault or the case has some problem?
the server is [email protected]
Logging is not synchronous probably
Logging is not synchronous probably
i try tcpdump, the client request sequentially by drop action, and follower by write action


Please show the java code which does this
Please show the java code which does this
code in src/test/java/org/influxdb/impl/BatchProcessorTest.java
the write point ahead

finally delete database
