-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Add log message about if changes are being applied now or later #12691
Conversation
@@ -839,6 +839,10 @@ func resourceAwsDbInstanceUpdate(d *schema.ResourceData, meta interface{}) error | |||
} | |||
d.SetPartial("apply_immediately") | |||
|
|||
if !d.Get("apply_immediately").(bool) { | |||
log.Println("[INFO] Only settings updating, instances changes applied in next maintenance window") |
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.
instances changes applied
-> instance changes will be applied
@@ -839,6 +839,10 @@ func resourceAwsDbInstanceUpdate(d *schema.ResourceData, meta interface{}) error | |||
} | |||
d.SetPartial("apply_immediately") | |||
|
|||
if !d.Get("apply_immediately").(bool) { | |||
log.Println("[INFO] Only settings updating, instances changes will be applied in next maintenance window") |
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.
instances changes
-> instance changes
* Add log message about if changes are being applied now or later * Improve english * Further adventure in english
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
The behavior of
apply_immediately
is spelled out clearly in the docs, but it's easy for users (such as myself) to misunderstand, forget, or not read in the first place. A simple log message informing them that the only thing being applied at this time is the settings helps users avoid confusion.