-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix clippy CI error in coredb-cli
#290
Conversation
This pull request is automatically being deployed by Amplify Hosting (learn more). |
@sjmiller609 To be honest I'm not sure this is the right solution. I don't think I fully understand the clippy error. |
.arg("sample-db"); | ||
cmd.assert() | ||
.stdout(predicate::str::contains("kind: CoreDB")); | ||
|
||
let mut cmd = Command::cargo_bin(CARGO_BIN)?; | ||
cmd.arg("create") | ||
.arg("--dry-run") | ||
.arg("--resource-type") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to fix without changing the CLI syntax?
@sjmiller609 it looks like it was a derive bug resolved in a later version of |
* conductor: log the restartedAt annotation being set * operator: log change in `restartedAt` * Update conductor/src/lib.rs --------- Co-authored-by: Steven Miller <sjmiller609@gmail.com>
It looks like a clippy error has arisen as we've udpated rust version in CI. This should resolve the issue.