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 536a30b commit 03624baCopy full SHA for 03624ba
module.cc
@@ -418,9 +418,9 @@ void RegisterThread(const FunctionCallbackInfo<Value> &args) {
418
}
419
420
auto store = AsyncLocalStorageLookup{
421
- .async_local_storage = v8::Global<v8::Value>(
422
- isolate, async_local_storage_val.ToLocalChecked()),
423
- .storage_key = std::move(storage_key)};
+ v8::Global<v8::Value>(isolate,
+ async_local_storage_val.ToLocalChecked()),
+ std::move(storage_key)};
424
425
RegisterThreadInternal(isolate, thread_name, std::move(store));
426
} else {
0 commit comments