Skip to content

Commit

Permalink
Merge pull request #65 from VladimirZaets/SITES-23456
Browse files Browse the repository at this point in the history
SITES-23456: Race condition in host/guest registration process
  • Loading branch information
VladimirZaets authored Aug 16, 2024
2 parents a705336 + 87905ae commit 0b7ee62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/uix-guest/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export async function register<Outgoing extends GuestApis>(
config: GuestConfigWithMethods<Outgoing>
) {
const guest = new GuestServer(config);
await guest.register(config.methods, config.metadata);
guest.register(config.methods, config.metadata);
return guest;
}

Expand Down

0 comments on commit 0b7ee62

Please sign in to comment.