Compare commits
No commits in common. "68954a79eca0b6c5224ca882906aff3739a0123e" and "02a2f6a27ab1d44c427d06a6e960fc85153f6d9d" have entirely different histories.
68954a79ec
...
02a2f6a27a
|
@ -1442,17 +1442,11 @@ def create_vm(
|
|||
)
|
||||
if not volume["pool"] in pools:
|
||||
pools[volume["pool"]] = int(
|
||||
pvc_ceph.format_bytes_fromhuman(volume_data["stats"]["size"])
|
||||
/ 1024
|
||||
/ 1024
|
||||
/ 1024
|
||||
volume_data["stats"]["size"].replace("G", "")
|
||||
)
|
||||
else:
|
||||
pools[volume["pool"]] += int(
|
||||
pvc_ceph.format_bytes_fromhuman(volume_data["stats"]["size"])
|
||||
/ 1024
|
||||
/ 1024
|
||||
/ 1024
|
||||
volume_data["stats"]["size"].replace("G", "")
|
||||
)
|
||||
else:
|
||||
if not volume["pool"] in pools:
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
import math
|
||||
|
||||
from json import dumps, loads
|
||||
from json import dumps
|
||||
from requests_toolbelt.multipart.encoder import (
|
||||
MultipartEncoder,
|
||||
MultipartEncoderMonitor,
|
||||
|
@ -1648,8 +1648,6 @@ def ceph_benchmark_list(config, job):
|
|||
|
||||
|
||||
def get_benchmark_list_results_legacy(benchmark_data):
|
||||
if isinstance(benchmark_data, str):
|
||||
benchmark_data = loads(benchmark_data)
|
||||
benchmark_bandwidth = dict()
|
||||
benchmark_iops = dict()
|
||||
for test in ["seq_read", "seq_write", "rand_read_4K", "rand_write_4K"]:
|
||||
|
@ -1734,7 +1732,7 @@ def format_list_benchmark(config, benchmark_information):
|
|||
|
||||
for benchmark in benchmark_information:
|
||||
benchmark_job = benchmark["job"]
|
||||
benchmark_format = benchmark.get("test_format", 0) # noqa: F841
|
||||
benchmark_format = benchmark["test_format"] # noqa: F841
|
||||
|
||||
_benchmark_job_length = len(benchmark_job)
|
||||
if _benchmark_job_length > benchmark_job_length:
|
||||
|
@ -1839,7 +1837,7 @@ def format_list_benchmark(config, benchmark_information):
|
|||
|
||||
for benchmark in benchmark_information:
|
||||
benchmark_job = benchmark["job"]
|
||||
benchmark_format = benchmark.get("test_format", 0) # noqa: F841
|
||||
benchmark_format = benchmark["test_format"] # noqa: F841
|
||||
|
||||
if benchmark["benchmark_result"] == "Running":
|
||||
seq_benchmark_bandwidth = "Running"
|
||||
|
|
Loading…
Reference in New Issue