Skip to content

Commit

Permalink
Merge pull request #19414 from davelopez/24.1_fix_config_templates_va…
Browse files Browse the repository at this point in the history
…lidation

[24.1] Fix config template validation for file sources and object store templates
  • Loading branch information
jdavcs authored Jan 17, 2025
2 parents 9b43bf5 + eef942a commit d18ab54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/util/config_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@


class StrictModel(BaseModel):
model_config = ConfigDict(extra="forbid")
model_config = ConfigDict(extra="forbid", coerce_numbers_to_str=True)


class BaseTemplateVariable(StrictModel):
Expand Down

0 comments on commit d18ab54

Please sign in to comment.