Skip to content

Commit 3ce3e06

Browse files
authored
Fix AsyncTransactionTimeoutError timeout unit in error message (#80)
1 parent 980fffd commit 3ce3e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sage/exceptions.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defmodule Sage.AsyncTransactionTimeoutError do
2121
def message(%__MODULE__{name: name, timeout: timeout}) do
2222
"""
2323
asynchronous transaction for operation #{name} has timed out,
24-
expected it to return within #{to_string(timeout)} microseconds
24+
expected it to return within #{to_string(timeout)} milliseconds
2525
"""
2626
end
2727
end

0 commit comments

Comments
 (0)