Cast alru_params.activity_threshold.total_milliseconds()
to int
Signed-off-by: Slawomir Jankowski <slawomir.jankowski@intel.com>
This commit is contained in:
parent
607ad5d16c
commit
0d6318461e
@ -176,7 +176,7 @@ class Cache:
|
|||||||
if alru_params.staleness_time is not None else None,
|
if alru_params.staleness_time is not None else None,
|
||||||
alru_params.flush_max_buffers
|
alru_params.flush_max_buffers
|
||||||
if alru_params.flush_max_buffers is not None else None,
|
if alru_params.flush_max_buffers is not None else None,
|
||||||
alru_params.activity_threshold.total_milliseconds()
|
int(alru_params.activity_threshold.total_milliseconds())
|
||||||
if alru_params.activity_threshold is not None else None)
|
if alru_params.activity_threshold is not None else None)
|
||||||
|
|
||||||
def get_cache_config(self):
|
def get_cache_config(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user