Skip to content

Commit

Permalink
Add missing retry_interval alias, fixes #96
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBoot committed Nov 7, 2024
1 parent 6c5c017 commit bc06dec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- File source now skips unsupported files rather then interrupting the whole sync, see [#89](https://github.com/BigBoot/AutoKuma/issues/89)
- File source now supports nested folders, the ids will be in the format `<folder>/<filename>` without the file extension, see [#28](https://github.com/BigBoot/AutoKuma/issues/28)
- Add missing retry_interval alias, see [#96](https://github.com/BigBoot/AutoKuma/issues/96)

## [0.8.0] - 2024-08-22
### Added
Expand Down
1 change: 1 addition & 0 deletions kuma-client/src/models/monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ macro_rules! monitor_type {
pub max_retries: Option<i32>,

#[serde(rename = "retryInterval")]
#[serde(alias = "retry_interval")]
#[serde_inline_default(Some(60))]
#[serde_as(as = "Option<DeserializeNumberLenient>")]
pub retry_interval: Option<i32>,
Expand Down

0 comments on commit bc06dec

Please sign in to comment.