JoaoJandre commented on code in PR #10456:
URL: https://github.com/apache/cloudstack/pull/10456#discussion_r2036029386
##########
engine/schema/src/main/resources/META-INF/db/schema-420to421.sql:
##########
@@ -242,3 +242,6 @@ INSERT IGNORE INTO `cloud`.`configuration` VALUES
('Advanced', 'DEFAULT', 'manag
INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT',
'management-server', 'vmware.hung.wokervm.timeout', '7200', 'Worker VM timeout
in seconds');
INSERT IGNORE INTO `cloud`.`configuration` VALUES ("Alert", 'DEFAULT',
'management-server', "alert.smtp.connectiontimeout", "30000", "Socket
connection timeout value in milliseconds. -1 for infinite timeout.");
INSERT IGNORE INTO `cloud`.`configuration` VALUES ("Alert", 'DEFAULT',
'management-server', "alert.smtp.timeout", "30000", "Socket I/O timeout value
in milliseconds. -1 for infinite timeout.");
+
+-- Update the value of user.vm.readonly.details record in the configuration
table to "" if it is NULL
+UPDATE `cloud`.`configuration` SET value = '' WHERE name =
'user.vm.readonly.details' AND value IS NULL;
Review Comment:
I believe that this is not the correct script for this update :smile:
--
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]