Merge "fix the value of query_spec.maxSample to advoid to be zero"

This commit is contained in:
Jenkins 2015-02-10 12:28:59 +00:00 committed by Gerrit Code Review
commit d1546590f3

View File

@ -206,7 +206,8 @@ class VsphereOperations(object):
query_spec.intervalId = VC_REAL_TIME_SAMPLING_INTERVAL
# We query all samples which are applicable over the specified duration
samples_cnt = (int(duration / VC_REAL_TIME_SAMPLING_INTERVAL)
if duration else 1)
if duration and
duration >= VC_REAL_TIME_SAMPLING_INTERVAL else 1)
query_spec.maxSample = samples_cnt
perf_manager = session.vim.service_content.perfManager