Skip to content

Commit

Permalink
fix: secret default value
Browse files Browse the repository at this point in the history
  • Loading branch information
xianml committed Jul 18, 2024
1 parent 30b95e0 commit 74a6e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bentoml/_internal/cloud/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class DeploymentConfigParameters:
instance_type: str | None = None
strategy: str | None = None
envs: t.List[dict[str, t.Any]] | None = None
secrets: t.List[str] | None = (None,)
secrets: t.List[str] | None = None
extras: dict[str, t.Any] | None = None
config_dict: dict[str, t.Any] | None = None
config_file: str | t.TextIO | None = None
Expand Down

0 comments on commit 74a6e62

Please sign in to comment.