dbca-utils 3.0.2__tar.gz → 3.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/PKG-INFO +1 -1
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/pyproject.toml +1 -1
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/healthcheck/healthcheck.py +2 -2
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/LICENSE +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/README.md +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/__init__.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/apps.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/healthcheck/__init__.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/healthcheck/urls.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/middleware.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/models.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/src/dbca_utils/utils.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/__init__.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/apps.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/migrations/0001_initial.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/migrations/__init__.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/models.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/settings.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/templates/tests/test_model_list.html +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/tests.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/urls.py +0 -0
- {dbca_utils-3.0.2 → dbca_utils-3.0.3}/tests/views.py +0 -0
|
@@ -284,7 +284,7 @@ def save_workloads(workloads,unreached_servers=None):
|
|
|
284
284
|
workloads[item_version] += 1
|
|
285
285
|
|
|
286
286
|
#save the new workloads data
|
|
287
|
-
cache.set(key_workloads,workloads)
|
|
287
|
+
cache.set(key_workloads,workloads,timeout=None)
|
|
288
288
|
logger.debug("Successfully save the workloads:{}".format(str_workloads(workloads)))
|
|
289
289
|
return
|
|
290
290
|
finally:
|
|
@@ -325,7 +325,7 @@ def save_assignedworkloads(assignedworkloads):
|
|
|
325
325
|
assignedworkloads[item_version] += 1
|
|
326
326
|
|
|
327
327
|
#save the new workloads data
|
|
328
|
-
cache.set(key_assignedworkloads,assignedworkloads)
|
|
328
|
+
cache.set(key_assignedworkloads,assignedworkloads,timeout=None)
|
|
329
329
|
logger.debug("Successfully save the assigned workloads:{}".format(assignedworkloads))
|
|
330
330
|
return
|
|
331
331
|
finally:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|