Skip to content

Commit

Permalink
fixed a undetect change (GoogleCloudPlatform#5178)
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardmedia authored and khajduczenia committed Oct 12, 2021
1 parent caaf905 commit 41cab17
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,10 @@ func resourceGCSBucketLifecycleRuleConditionHash(v interface{}) int {
buf.WriteString(fmt.Sprintf("%d-", v.(int)))
}

if v, ok := m["days_since_noncurrent_time"]; ok {
buf.WriteString(fmt.Sprintf("%d-", v.(int)))
}

if v, ok := m["created_before"]; ok {
buf.WriteString(fmt.Sprintf("%s-", v.(string)))
}
Expand Down

0 comments on commit 41cab17

Please sign in to comment.