We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a606911 commit 4394ea2Copy full SHA for 4394ea2
airbyte_cdk/cli/airbyte_cdk/_secrets.py
@@ -50,6 +50,9 @@
50
)
51
52
GCP_PROJECT_ID: str = os.environ.get("GCP_PROJECT_ID", "") or "dataline-integration-testing"
53
+# We put the `or` outside the `get()` because we want the `GCP_PROJECT_ID`
54
+# value to be ignored if it contains an empty string, such as in CI where the
55
+# workflow might set it to a value that is itself actually missing or unset.
56
"""The GCP project ID to use for fetching integration test secrets."""
57
58
CONNECTOR_LABEL = "connector"
0 commit comments