Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting Error "cannot use immediate apply method for static parameter"

While modifying parameter "lower_case_table_names = 1" of rds using boto, I am getting this error:

cannot use immediate apply method for static parameter

like image 578
kohi Avatar asked Jan 27 '16 05:01

kohi


1 Answers

You are getting this error because the apply method is set to immediate and this parameter can only be changed on a reboot.

Change the apply method to pending-reboot.

See the documentation on modifying db parameters and the documentation for parameters for more information.

like image 73
Burhan Khalid Avatar answered Oct 15 '22 22:10

Burhan Khalid