Skip to content

Commit

Permalink
Merge pull request #421 from gcoxmoz/syncrepl-keepalive
Browse files Browse the repository at this point in the history
Loosen restrictive regex on syncrepl keepalive
  • Loading branch information
TheMeier committed Jun 2, 2024
2 parents 76b8d07 + 9380850 commit f5884f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1856,7 +1856,7 @@ Struct[{
Optional[credentials] => Variant[String[1], Sensitive[String[1]]],
Optional[realm] => String[1],
Optional[secprops] => String[1],
Optional[keepalive] => Pattern['\A\d{2}:\d{2}:\d{2}\z'],
Optional[keepalive] => Pattern['\A\d+:\d+:\d+\z'],
Optional[starttls] => Enum['yes', 'critical'],
Optional[tls_cert] => Stdlib::Absolutepath,
Optional[tls_key] => Stdlib::Absolutepath,
Expand Down
2 changes: 1 addition & 1 deletion types/syncrepl.pp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
Optional[credentials] => Variant[String[1], Sensitive[String[1]]],
Optional[realm] => String[1],
Optional[secprops] => String[1],
Optional[keepalive] => Pattern['\A\d{2}:\d{2}:\d{2}\z'],
Optional[keepalive] => Pattern['\A\d+:\d+:\d+\z'],
Optional[starttls] => Enum['yes', 'critical'],
Optional[tls_cert] => Stdlib::Absolutepath,
Optional[tls_key] => Stdlib::Absolutepath,
Expand Down

0 comments on commit f5884f2

Please sign in to comment.