We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3642fb commit 59d6e20Copy full SHA for 59d6e20
src/api.jl
@@ -78,8 +78,7 @@ function wait_until_done(ctx::Context, txn::JSON3.Object; start_time_ns = nothin
78
wait_until_done(ctx, transaction_id(txn); start_time_ns)
79
end
80
function _transaction_start_time_ns(txn::JSON3.Object)
81
- unix_ms = txn[:created_on] ÷ 1000
82
- Dates.unix2datetime(unix_ms)
+ return txn[:created_on] ÷ 1_000_000_000
83
84
function wait_until_done(ctx::Context, id::AbstractString; start_time_ns = nothing)
85
# If the user is calling this manually, read the start time from the transaction object.
0 commit comments