sureshanaparti commented on code in PR #6477: URL: https://github.com/apache/cloudstack/pull/6477#discussion_r902169025
########## engine/schema/src/main/resources/META-INF/db/schema-41700to41710.sql: ########## @@ -17,4 +17,7 @@ --; -- Schema upgrade from 4.17.0.0 to 4.17.1.0 ---; \ No newline at end of file +--; + +UPDATE `cloud`.`configuration` set `value` = 'false' where `name` = 'network.disable.rpfilter' and `value` != 'true'; Review Comment: ```suggestion UPDATE `cloud`.`configuration` SET `value` = 'false' WHERE `name` = 'network.disable.rpfilter' AND `value` != 'true'; ``` Same for the other update... -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
