Skip to content

Commit

Permalink
Fix comment in ModelRollout
Browse files Browse the repository at this point in the history
  • Loading branch information
marcopremier committed Jun 28, 2023
1 parent adeba62 commit cf09cf3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/proto/wfa/measurement/api/v2alpha/model_rollout.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ message ModelRollout {
// Resource name.
string name = 1;

// Determine the type of rollout for this ModelRollout. Required.
oneof rollout_deploy_period {
// Time interval over which the rollout must be deployed. 'start_time' must
// be sufficiently in the future to allow for EDPs to sync with the Kingdom.
// 'end_time' cannot precede 'start_time'.
TimeInterval gradual_rollout_period = 8 [
(google.api.field_behavior) = REQUIRED,
(google.api.field_behavior) = IMMUTABLE
];
TimeInterval gradual_rollout_period = 8
[(google.api.field_behavior) = IMMUTABLE];

// In case of a rollout instantly deployed, instant_rollout_time must be
// specified instead.
google.protobuf.Timestamp instant_rollout_time = 9;
google.protobuf.Timestamp instant_rollout_time = 9
[(google.api.field_behavior) = IMMUTABLE];
}

// Indicates the time the rollout must stop expanding its release percentage.
Expand Down

0 comments on commit cf09cf3

Please sign in to comment.