Merge "Issue #1988: Fix iscMosaic regression caused by DR 1941." into omaha_13.4.1
Former-commit-id:4e63cd7a70
[formerly 790a0c78c95414ddec13294b68905b1d7bbb60a9] Former-commit-id:4b91905eaf
This commit is contained in:
commit
62c271f932
1 changed files with 3 additions and 6 deletions
|
@ -77,6 +77,8 @@ from com.raytheon.uf.edex.database.cluster import ClusterTask
|
||||||
# 03/12/13 1759 dgilling Remove unnecessary command line
|
# 03/12/13 1759 dgilling Remove unnecessary command line
|
||||||
# processing.
|
# processing.
|
||||||
# 04/24/13 1941 dgilling Re-port WECache to match A1.
|
# 04/24/13 1941 dgilling Re-port WECache to match A1.
|
||||||
|
# 05/08/13 1988 dgilling Fix history handling bug in
|
||||||
|
# __getDbGrid().
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
|
@ -730,12 +732,6 @@ class IscMosaic:
|
||||||
grid = self._wec[tr]
|
grid = self._wec[tr]
|
||||||
if grid is not None:
|
if grid is not None:
|
||||||
destGrid, history = grid
|
destGrid, history = grid
|
||||||
|
|
||||||
tempHistory = []
|
|
||||||
for hist in history:
|
|
||||||
tempHistory.append(hist.getCodedString())
|
|
||||||
history = tempHistory
|
|
||||||
|
|
||||||
self.__dbGrid = (destGrid, history, tr)
|
self.__dbGrid = (destGrid, history, tr)
|
||||||
else:
|
else:
|
||||||
self.logProblem("Unable to access grid for ",
|
self.logProblem("Unable to access grid for ",
|
||||||
|
@ -743,6 +739,7 @@ class IscMosaic:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return (self.__dbGrid[0], self.__dbGrid[1])
|
return (self.__dbGrid[0], self.__dbGrid[1])
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
# calculate file start/end processing times
|
# calculate file start/end processing times
|
||||||
# Returns (startTime, endTime) or None for processing
|
# Returns (startTime, endTime) or None for processing
|
||||||
|
|
Loading…
Add table
Reference in a new issue