Skip to content

Commit dc07c5d

Browse files
committedSep 29, 2023
feat: narrow the auth event listening
1 parent d1f4574 commit dc07c5d

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed
 

‎.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: CI/CD
22

3-
on: [pull_request, push, workflow_dispatch]
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
workflow_dispatch:
49

510
jobs:
611
test:

‎supabase/client.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,10 @@ def _get_token_header(self):
232232
}
233233

234234
def _listen_to_auth_events(self, event: AuthChangeEvent, session):
235-
# reset postgrest instance on event change
236-
self._postgrest = None
237-
self._storage = None
235+
if event == "SIGNED_IN" or event == "TOKEN_REFRESHED" or event == "SIGNED_OUT":
236+
# reset postgrest and storage instance on event change
237+
self._postgrest = None
238+
self._storage = None
238239

239240

240241
def create_client(

0 commit comments

Comments
 (0)
Please sign in to comment.