fix(provider/dcos): Fix deserialization error for DCOSAccount.Cluster… #1139
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…Credential
Attempting to add a DC/OS account fails with the error
This appears to have been introduced with b5a09b7. I think that it may be due to changing the version of lombok and projectlombok/lombok#1563. The change in this PR is the one suggested in that issue as a way to resolve the problem and it seems to work here.
Disclaimer:
I know very little about lombok and don't know if this could break anything else. I only validated adding a DC/OS account and ran the tests for the project. I'm also not clear why this causes an issue only for
DCOSAccount.ClusterCredential
when it appears similar to many of the other@Data
lombok classes in the project that aren't affected by this issue.