-
-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Prevent match error on GenCounter (#1243)
* Handles match error on GenCounter in a more grafecul way * Adds Logger metadata on multiple processes
- Loading branch information
1 parent
22c1ba8
commit 378b030
Showing
12 changed files
with
117 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ import { | |
createClient, | ||
SupabaseClient, | ||
RealtimeChannel, | ||
} from "npm:@supabase/supabase-js@latest"; | ||
} from "npm:@supabase/supabase-js@2.47.3"; | ||
import { | ||
assert, | ||
assertEquals, | ||
|
@@ -125,7 +125,6 @@ describe("postgres changes extension", () => { | |
"[email protected]", | ||
"test_test" | ||
); | ||
await supabase.realtime.setAuth(accessToken); | ||
|
||
let result: Array<any> = []; | ||
let topic = crypto.randomUUID(); | ||
|
@@ -164,7 +163,6 @@ describe("postgres changes extension", () => { | |
"[email protected]", | ||
"test_test" | ||
); | ||
await supabase.realtime.setAuth(accessToken); | ||
|
||
let result: Array<any> = []; | ||
let topic = crypto.randomUUID(); | ||
|
@@ -207,7 +205,6 @@ describe("postgres changes extension", () => { | |
"[email protected]", | ||
"test_test" | ||
); | ||
await supabase.realtime.setAuth(accessToken); | ||
|
||
let result: Array<any> = []; | ||
let topic = crypto.randomUUID(); | ||
|
@@ -275,7 +272,6 @@ describe("authorization check", () => { | |
"[email protected]", | ||
"test_test" | ||
); | ||
await supabase.realtime.setAuth(accessToken); | ||
|
||
const channel = supabase | ||
.channel(crypto.randomUUID(), { config: { ...config, private: true } }) | ||
|
@@ -303,7 +299,6 @@ describe("broadcast changes", () => { | |
"[email protected]", | ||
"test_test" | ||
); | ||
await supabase.realtime.setAuth(accessToken); | ||
|
||
const channel = supabase | ||
.channel(`event:${id}`, { config: { ...config, private: true } }) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.