mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-08 07:23:34 +00:00
fix(ingest): add alias for bigquery-beta (#6521)
This commit is contained in:
parent
648ce31377
commit
2cb1e6576d
@ -5,7 +5,7 @@ FROM acryldata/datahub-ingestion-base as base
|
|||||||
|
|
||||||
FROM openjdk:11 as prod-build
|
FROM openjdk:11 as prod-build
|
||||||
COPY . /datahub-src
|
COPY . /datahub-src
|
||||||
RUN cd /datahub-src && ./gradlew :metadata-events:mxe-schemas:build
|
RUN cd /datahub-src && ./gradlew :wrapper && ./gradlew :metadata-events:mxe-schemas:build
|
||||||
|
|
||||||
FROM base as prod-codegen
|
FROM base as prod-codegen
|
||||||
COPY --from=prod-build /datahub-src /datahub-src
|
COPY --from=prod-build /datahub-src /datahub-src
|
||||||
|
|||||||
@ -17,6 +17,13 @@ source_registry.register_alias(
|
|||||||
UserWarning("source type snowflake-beta is deprecated, use snowflake instead")
|
UserWarning("source type snowflake-beta is deprecated, use snowflake instead")
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
source_registry.register_alias(
|
||||||
|
"bigquery-beta",
|
||||||
|
"bigquery",
|
||||||
|
lambda: warnings.warn(
|
||||||
|
UserWarning("source type bigquery-beta is deprecated, use bigquery instead")
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
# The MSSQL source has two possible sets of dependencies. We alias
|
# The MSSQL source has two possible sets of dependencies. We alias
|
||||||
# the second to the first so that we maintain the 1:1 mapping between
|
# the second to the first so that we maintain the 1:1 mapping between
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user