You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by sureshanaparti <gi...@git.apache.org> on 2016/12/30 05:49:22 UTC

[GitHub] cloudstack issue #1880: CLOUDSTACK-9720: [VMware] template_spool_ref table i...

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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---