tigerbeetle-node 0.14.180 → 0.14.183
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/aarch64-linux-gnu/client.node +0 -0
- package/dist/bin/aarch64-linux-musl/client.node +0 -0
- package/dist/bin/aarch64-macos/client.node +0 -0
- package/dist/bin/x86_64-linux-gnu/client.node +0 -0
- package/dist/bin/x86_64-linux-musl/client.node +0 -0
- package/dist/bin/x86_64-macos/client.node +0 -0
- package/dist/bin/x86_64-windows/client.node +0 -0
- package/package.json +1 -1
- package/src/node.zig +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/node.zig
CHANGED
|
@@ -153,7 +153,7 @@ fn create(env: c.napi_env, cluster_id: u128, concurrency: u32, addresses: []cons
|
|
|
153
153
|
on_completion,
|
|
154
154
|
) catch |err| switch (err) {
|
|
155
155
|
error.OutOfMemory => return translate.throw(env, "Failed to allocate memory for Client."),
|
|
156
|
-
error.Unexpected => return translate.throw(env, "Unexpected error
|
|
156
|
+
error.Unexpected => return translate.throw(env, "Unexpected error occurred on Client."),
|
|
157
157
|
error.AddressInvalid => return translate.throw(env, "Invalid replica address."),
|
|
158
158
|
error.AddressLimitExceeded => return translate.throw(env, "Too many replica addresses."),
|
|
159
159
|
error.ConcurrencyMaxInvalid => return translate.throw(env, "Concurrency is too high."),
|