fix channel creation
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
49eddd0b75
commit
3c59a60152
|
@ -72,6 +72,6 @@ def get_client(addr: str):
|
||||||
channel = secure_channel(addr, ssl_channel_credentials())
|
channel = secure_channel(addr, ssl_channel_credentials())
|
||||||
if settings.DEBUG:
|
if settings.DEBUG:
|
||||||
channel = insecure_channel(addr)
|
channel = insecure_channel(addr)
|
||||||
channel = intercept_channel(addr, AuthInterceptor(get_enterprise_token()))
|
channel = intercept_channel(channel, AuthInterceptor(get_enterprise_token()))
|
||||||
client = AuthenticationPushStub(channel)
|
client = AuthenticationPushStub(channel)
|
||||||
return client
|
return client
|
||||||
|
|
Reference in New Issue