Skip to content

Commit

Permalink
change file trigger pattern to str
Browse files Browse the repository at this point in the history
  • Loading branch information
1maple1 committed Jul 17, 2024
1 parent cb52bc5 commit 91093fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brewtils/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ class CronTriggerSchema(BaseSchema):


class FileTriggerSchema(BaseSchema):
pattern = fields.List(fields.Str(), allow_none=True)
pattern = fields.Str(allow_none=True)
path = fields.Str(allow_none=True)
recursive = fields.Bool(allow_none=True)

Expand Down

0 comments on commit 91093fb

Please sign in to comment.