Skip to content

Commit ee3ce86

Browse files
committed
1 parent e377496 commit ee3ce86

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

builder/googlecompute/step_create_image.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func (s *StepCreateImage) getDeprecationStatus(config *Config) (*compute.Depreca
126126
errs = packersdk.MultiErrorAppend(errs, fmt.Errorf("deprecate_at must be a future time"))
127127
} else {
128128
deprecation.Deprecated = config.DeprecateAt
129-
deprecation.State = "ACTIVE"
129+
deprecation.State = "ACTIVE"
130130
}
131131
}
132132

@@ -138,7 +138,7 @@ func (s *StepCreateImage) getDeprecationStatus(config *Config) (*compute.Depreca
138138
errs = packersdk.MultiErrorAppend(errs, fmt.Errorf("obsolete_at must be a future time"))
139139
} else {
140140
deprecation.Obsolete = config.ObsoleteAt
141-
deprecation.State = "ACTIVE"
141+
deprecation.State = "ACTIVE"
142142
}
143143

144144
}
@@ -151,7 +151,7 @@ func (s *StepCreateImage) getDeprecationStatus(config *Config) (*compute.Depreca
151151
errs = packersdk.MultiErrorAppend(errs, fmt.Errorf("delete_at must be a future time"))
152152
} else {
153153
deprecation.Deleted = config.DeleteAt
154-
deprecation.State = "ACTIVE"
154+
deprecation.State = "ACTIVE"
155155
}
156156
}
157157

0 commit comments

Comments
 (0)