You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A [previous commit][0] that changed the ACK pkg/resource templates
introduced an error for controllers that have CREATE or UPDATE
implementations where the Output shape from the operation sets no fields
on the CR.
In these cases, attempting to build these controllers was resulting in a
build failure, like this for the RDS controller:
```
pkg/resource/db_parameter_group/sdk.go:205:6: resp declared but not used
```
This corrects that by using a blanking technique immediately after the
variable declaration:
```
var resp *SomeSDKShape; _ = resp;
```
[0]: a42b4a1
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
0 commit comments