Skip to content

Commit

Permalink
Update quick_start.py
Browse files Browse the repository at this point in the history
Typo in the example: timestamp should be in microseconds
  • Loading branch information
AnthonyCvn authored Feb 6, 2024
1 parent e4ce31e commit 3af711e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def file_reader():
break
yield data

ts = int(time_ns() / 10000)
ts = int(time_ns() / 1000)
await bucket.write(
"entry-1",
file_reader(),
Expand Down

0 comments on commit 3af711e

Please sign in to comment.