File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,11 +102,11 @@ def cluster_up_failed_times(self) -> int:
102102
103103 @property
104104 def cluster_up_failed_interval (self ) -> datetime .timedelta : # 24 hours
105- return datetime .timedelta (seconds = units .parse_time_units (self .get ("advanced.cluster_up_failed_interval" ) or "24h" ) / 1e9 )
105+ return datetime .timedelta (seconds = units .parse_time_units (self .get ("advanced.cluster_up_failed_interval" ) or "24h" ))
106106
107107
108108API_VERSION = "1.13.1"
109- VERSION = "4.0.13 "
109+ VERSION = "4.0.14 "
110110PROJECT = "PythonOpenBMCLAPI"
111111USER_AGENT = f"openbmclapi-cluster/{ API_VERSION } { PROJECT } /{ VERSION } "
112112ROOT_PATH = Path (__file__ ).parent .parent
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ def cache_size(self):
5959
6060 @property
6161 def cache_ttl (self ):
62- return units .parse_time_units (self ._kwargs .get ("cache_ttl" , "10m" )) / 1e9
62+ return units .parse_time_units (self ._kwargs .get ("cache_ttl" , "10m" ))
6363
6464 @abc .abstractmethod
6565 async def setup (
You can’t perform that action at this time.
0 commit comments