Skip to content

Commit

Permalink
int64 -> in32 for consistency with other fields
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoShaka committed Dec 14, 2024
1 parent 3a3dd61 commit 5569d38
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions api/proto/teleport/autoupdate/v1/autoupdate.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ message AgentAutoUpdateGroup {
int32 start_hour = 3;
// wait_hours after last group succeeds before this group can run. This can only be used when the strategy is "halt-on-failure".
// This field must be positive.
int64 wait_hours = 5;
int32 wait_hours = 5;
}

// AutoUpdateVersion is a resource singleton with version required for
Expand Down Expand Up @@ -204,7 +204,7 @@ message AutoUpdateAgentRolloutStatusGroup {
int32 config_start_hour = 7;
// config_wait_hours after last group succeeds before this group can run. This can only be used when the strategy is "halt-on-failure".
// This field must be positive.
int64 config_wait_hours = 9;
int32 config_wait_hours = 9;
}

// AutoUpdateAgentGroupState represents the agent group state. This state controls whether the agents from this group
Expand Down

0 comments on commit 5569d38

Please sign in to comment.