Skip to content

Commit

Permalink
make optional
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanHolstien committed Nov 17, 2023
1 parent ab30dae commit ee2d129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata-ingestion/src/datahub/cli/quickstart_versioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class QuickstartExecutionPlan(BaseModel):
composefile_git_ref: str
docker_tag: str
mysql_tag: str
mysql_tag: Optional[str]


def _is_it_a_version(version: str) -> bool:
Expand Down Expand Up @@ -94,7 +94,7 @@ def fetch_quickstart_config(cls) -> "QuickstartVersionMappingConfig":
try:
release = cls._fetch_latest_version()
config.quickstart_version_map["stable"] = QuickstartExecutionPlan(
composefile_git_ref=release, docker_tag=release
composefile_git_ref=release, docker_tag=release, mysql_tag=release
)
except Exception:
click.echo(
Expand Down

0 comments on commit ee2d129

Please sign in to comment.