Github user sureshanaparti commented on the issue: https://github.com/apache/cloudstack/pull/1880 Validated that the template_size is getting updated correctly in template_spool_ref table. Prior to the fix, the size was logged as 0 => mysql> select id,template_id,template_size from template_spool_ref; --------------------------------- id template_id template_size --------------------------------- 1 8 0 2 202 0 3 7 0 7 8 0 10 8 0 15 8 0 23 202 0 25 202 0 --------------------------------- After the fix correct size is getting updated=> mysql> select id,template_id,template_size from template_spool_ref; --------------------------------- id template_id template_size --------------------------------- 1 8 2621440000 2 202 3145728000 3 7 2147483648 --------------------------------- 3 rows in set (0.00 sec)
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---