rda-python-dsquasar 1.0.5__tar.gz → 1.0.6__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.
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/PKG-INFO +1 -1
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/pyproject.toml +1 -1
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar/dsquasar.py +2 -2
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/PKG-INFO +1 -1
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/LICENSE +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/README.md +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/setup.cfg +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar/__init__.py +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/SOURCES.txt +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/dependency_links.txt +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/entry_points.txt +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/requires.txt +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/top_level.txt +0 -0
- {rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/tests/test_dsquasar.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_dsquasar
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: RDA Python package to backup and recover RDA data archives to and from GLOBUS Quasar backup server
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-dsquasar
|
|
@@ -1176,7 +1176,7 @@ def gather_dataset_files(dsfiles, dsids, unlock = True):
|
|
|
1176
1176
|
dcnd = "dsid = '{}'".format(dsid)
|
|
1177
1177
|
pgrec = PgDBI.pgget("dataset", "dsid, backflag, pid", dcnd, PgLOG.LGWNEX)
|
|
1178
1178
|
if pgrec:
|
|
1179
|
-
if unlock and pgrec['pid'] and PgLock.lock_dataset(dsid, 0,
|
|
1179
|
+
if unlock and pgrec['pid'] and PgLock.lock_dataset(dsid, 0, LOGACT) < 1: continue
|
|
1180
1180
|
fcnt += get_dataset_files(dsid, dsfiles, pgrec['backflag'], PgLOG.LOGWRN)
|
|
1181
1181
|
else:
|
|
1182
1182
|
dcnd = "ORDER BY dsid"
|
|
@@ -1184,7 +1184,7 @@ def gather_dataset_files(dsfiles, dsids, unlock = True):
|
|
|
1184
1184
|
dcnt = len(pgrecs['dsid']) if pgrecs else 0
|
|
1185
1185
|
for i in range(dcnt):
|
|
1186
1186
|
dsid = pgrecs['dsid'][i]
|
|
1187
|
-
if unlock and pgrecs['pid'][i] and PgLock.lock_dataset(dsid, 0,
|
|
1187
|
+
if unlock and pgrecs['pid'][i] and PgLock.lock_dataset(dsid, 0, LOGACT) < 1: continue
|
|
1188
1188
|
fcnt += get_dataset_files(dsid, dsfiles, pgrecs['backflag'][i])
|
|
1189
1189
|
|
|
1190
1190
|
if dsfiles:
|
{rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_dsquasar
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: RDA Python package to backup and recover RDA data archives to and from GLOBUS Quasar backup server
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-dsquasar
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rda_python_dsquasar-1.0.5 → rda_python_dsquasar-1.0.6}/src/rda_python_dsquasar.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|