Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vallbull committed Nov 27, 2023
1 parent 1a61c96 commit fd6f88d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def set_up_sentry(self, secret_sentry_dsn: str, release: str) -> None:
)

def create_app(self, app_version: str) -> web.Application:
core_conn_whitelist = ["clickhouse", "file", "gsheets_v2", "docs"]
core_conn_whitelist = ["clickhouse", "file", "gsheets_v2"]
load_core_lib(core_lib_config=CoreLibraryConfig(core_connector_ep_names=core_conn_whitelist))

if (secret_sentry_dsn := self._settings.SENTRY_DSN) is not None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class FileUploaderContextFab(BaseContextFabric):
_tenant_resolver: TenantResolver = attr.ib(factory=lambda: CommonTenantResolver())

async def make(self) -> FileUploaderTaskContext:
core_conn_whitelist = ["clickhouse", "file", "gsheets_v2", "docs"]
core_conn_whitelist = ["clickhouse", "file", "gsheets_v2"]
load_core_lib(core_lib_config=CoreLibraryConfig(core_connector_ep_names=core_conn_whitelist))

redis_service = init_redis_service(self._settings)
Expand Down

0 comments on commit fd6f88d

Please sign in to comment.