()
| 1075 | } |
| 1076 | |
| 1077 | func (opts ValidateOptions) withDefaults() ValidateOptions { |
| 1078 | if opts.Now.IsZero() { |
| 1079 | opts.Now = time.Now().UTC() |
| 1080 | } |
| 1081 | if opts.MaxReplayAge <= 0 { |
| 1082 | opts.MaxReplayAge = DefaultMaxReplayAge |
| 1083 | } |
| 1084 | return opts |
| 1085 | } |
no test coverage detected