Skip to content

Commit

Permalink
fix: secret default value (#4870)
Browse files Browse the repository at this point in the history
  • Loading branch information
xianml authored Jul 18, 2024
1 parent fab310d commit e41dc2c
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 e41dc2c

Please sign in to comment.