Skip to content

Commit

Permalink
fix(ingest): bigquery - fix stateful ingestion checkpoint reconstruct…
Browse files Browse the repository at this point in the history
…ion. (#4295)
  • Loading branch information
rslanka authored Mar 2, 2022
1 parent 29490e1 commit 520968b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,10 @@ def get_sql_alchemy_url(self):

@pydantic.validator("platform_instance")
def bigquery_doesnt_need_platform_instance(cls, v):
raise ConfigurationError(
"BigQuery project ids are globally unique. You do not need to specify a platform instance."
)
if v is not None:
raise ConfigurationError(
"BigQuery project ids are globally unique. You do not need to specify a platform instance."
)

@pydantic.validator("platform")
def platform_is_always_bigquery(cls, v):
Expand Down

0 comments on commit 520968b

Please sign in to comment.