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
internal/fwserver: Remove old multiple pass code comments in PlanResourceChange logic (#798)
Reference: #183
When plan modification logic was introduced into the framework, it was not clear whether a multiple pass approach to running provider logic would be necessary. After thorough investigation, the multiple pass approach was instead replaced with explicit attribute default functionality to cover the main use case for such an approach, but the code comments were not removed when that was completed. To prevent future maintainer confusion, this is removing the old code comments.
// serve_test.go:3303: An unexpected error was encountered trying to read an attribute from the configuration. This is always an error in the provider. Please report the following to the provider developer:
150
-
//
151
-
// ElementKeyInt(1).AttributeName("name") still remains in the path: step cannot be applied to this value
152
-
//
153
-
// To fix this, (Config).GetAttribute() should return nil instead of the error.
// serve_test.go:3303: An unexpected error was encountered trying to read an attribute from the configuration. This is always an error in the provider. Please report the following to the provider developer:
169
-
//
170
-
// ElementKeyInt(1).AttributeName("name") still remains in the path: step cannot be applied to this value
171
-
//
172
-
// To fix this, (Config).GetAttribute() should return nil instead of the error.
0 commit comments