You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a deployed TiPG instance in GCP Cloud Run, utilizing many environmental variables to control the deployment, like:
"TIPG_TABLE_CONFIG__public_mytable__GEOMCOL" = mygeomcol
The DB Setting TIPG_DB_EXCLUDE_TABLES is described in the documentation as accepting a list of strings, however, it silently fails when provided with a list of length 2.
TIPG_DB_EXCLUDE_TABLES = ["public.mytable1"] <<< This works, and reduces the exposed collections to exclude mytable1
TIPG_DB_EXCLUDE_TABLES = ["public.mytable2"] <<< This works, and reduces the exposed collections to exclude mytable2
TIPG_DB_EXCLUDE_TABLES = ["public.mytable1", "public.mytable2"] <<< This fails, and the exposed collections are NOT reduced.
My version is pinned to tipg~=0.3.0
The text was updated successfully, but these errors were encountered:
I have a deployed TiPG instance in GCP Cloud Run, utilizing many environmental variables to control the deployment, like:
"TIPG_TABLE_CONFIG__public_mytable__GEOMCOL" = mygeomcol
The DB Setting TIPG_DB_EXCLUDE_TABLES is described in the documentation as accepting a list of strings, however, it silently fails when provided with a list of length 2.
TIPG_DB_EXCLUDE_TABLES = ["public.mytable1"] <<< This works, and reduces the exposed collections to exclude mytable1
TIPG_DB_EXCLUDE_TABLES = ["public.mytable2"] <<< This works, and reduces the exposed collections to exclude mytable2
TIPG_DB_EXCLUDE_TABLES = ["public.mytable1", "public.mytable2"] <<< This fails, and the exposed collections are NOT reduced.
My version is pinned to tipg~=0.3.0
The text was updated successfully, but these errors were encountered: