-
Notifications
You must be signed in to change notification settings - Fork 29
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
Implement dry run mode #10
base: master
Are you sure you want to change the base?
Conversation
…action to actions classes
…ommand. No dry-run scenario established
…layer in real or dry-run context
{ | ||
$currentParameters = $this->query('GET', $apiUri); | ||
|
||
if ($currentParameters instanceof Response) { |
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.
Prefer the opposite to avoid useless imbrication:
if (!$currentParameters instanceof Response) {
return;
}
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.
of course, will be modified
I just tried this option on my laptop. :)
Does Rabbit return the correct response code? |
I don't have the same issue. |
Forget it. |
Can you rebase your PR please? :) |
Any news about that PR? ping @Domisys |
Dry run mode compare existing configuration and new one and output computation result with different verbosity modes.