rda-python-dscheck 2.0.2__tar.gz → 2.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.
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/PKG-INFO +1 -1
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/pyproject.toml +1 -1
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck/pg_check.py +4 -4
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/PKG-INFO +1 -1
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/LICENSE +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/MANIFEST.in +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/README.md +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/setup.cfg +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck/PgCheck.py +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck/__init__.py +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck/ds_check.py +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck/dscheck.py +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck/dscheck.usg +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/SOURCES.txt +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/dependency_links.txt +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/entry_points.txt +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/requires.txt +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/top_level.txt +0 -0
- {rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/tests/test_dscheck.py +0 -0
|
@@ -165,8 +165,8 @@ class PgCheck(PgOPT, PgCMD):
|
|
|
165
165
|
self.PGOPT['dscheck'] = "COVTUPFJDNW" # default
|
|
166
166
|
self.PGOPT['chkall'] = "COVTAUPRBFJKLZDYHNWMIQXE" # default to all
|
|
167
167
|
self.PGOPT['dsdaemon'] = "ICHQSPO" # default to all
|
|
168
|
-
self.PGOPT['waitlimit'] =
|
|
169
|
-
self.PGOPT['totallimit'] =
|
|
168
|
+
self.PGOPT['waitlimit'] = 300 # limit of C and P request checks at a time
|
|
169
|
+
self.PGOPT['totallimit'] = 500 # maximum number of checks can be started on PBS
|
|
170
170
|
self.PBSQUEUES = {'rda': None, 'htc': 'casper@casper-pbs'}
|
|
171
171
|
self.PBSTIMES = {'default': 21600, 'rda': self.PGLOG['PBSTIME'], 'htc': 86400}
|
|
172
172
|
self.DSLMTS = {}
|
|
@@ -769,8 +769,8 @@ class PgCheck(PgOPT, PgCMD):
|
|
|
769
769
|
"einfo IS NULL ORDER BY priority, rindex")
|
|
770
770
|
pgrecs = self.pgmget("dsrqst", "*", rcnd, logact)
|
|
771
771
|
cnt = (len(pgrecs['rindex']) if pgrecs else 0)
|
|
772
|
-
ccnt = self.pgget("dscheck", '', "status = 'C'", logact)
|
|
773
|
-
pcnt = self.pgget("dscheck", '', "status = 'P'", logact)
|
|
772
|
+
ccnt = self.pgget("dscheck", '', "command = 'dsrqst' AND status = 'C'", logact)
|
|
773
|
+
pcnt = self.pgget("dscheck", '', "command = 'dsrqst' AND status = 'P'", logact)
|
|
774
774
|
if (ccnt+pcnt) > self.PGOPT['waitlimit']:
|
|
775
775
|
if cnt: self.pglog("{}/{} Checks are Waiting/Pending; Add new dscheck records {} later".format(ccnt, pcnt, self.PGLOG['HOSTNAME']),
|
|
776
776
|
self.LOGWRN|self.FRCLOG)
|
|
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
|
{rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/requires.txt
RENAMED
|
File without changes
|
{rda_python_dscheck-2.0.2 → rda_python_dscheck-2.0.3}/src/rda_python_dscheck.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|