Skip to content

Commit

Permalink
Bump dialogflow agent tier retries (#3079) (#5603)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Feb 6, 2020
1 parent 3c55d15 commit 373b432
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions google/resource_dialogflow_agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ func resourceDialogflowAgentCreate(d *schema.ResourceData, meta interface{}) err
return res, res["tier"].(string), nil
},
Timeout: 40 * time.Minute,
MinTimeout: 10 * time.Second,
ContinuousTargetOccurence: 10,
MinTimeout: 30 * time.Second,
ContinuousTargetOccurence: 12,
}
_, err = stateConf.WaitForState()
if err != nil {
Expand Down Expand Up @@ -439,8 +439,8 @@ func resourceDialogflowAgentUpdate(d *schema.ResourceData, meta interface{}) err
return res, res["tier"].(string), nil
},
Timeout: 40 * time.Minute,
MinTimeout: 10 * time.Second,
ContinuousTargetOccurence: 10,
MinTimeout: 30 * time.Second,
ContinuousTargetOccurence: 12,
}
_, err = stateConf.WaitForState()
if err != nil {
Expand Down

0 comments on commit 373b432

Please sign in to comment.