We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cd3254 commit 9ec7ccfCopy full SHA for 9ec7ccf
src/DIRAC/WorkloadManagementSystem/DB/JobLoggingDB.py
@@ -141,7 +141,7 @@ def getWMSTimeStamps(self, jobID):
141
# self.log.debug('getWMSTimeStamps: Retrieving Timestamps for Job %d' % int(jobID))
142
143
result = {}
144
- cmd = "SELECT Status,StatusTimeOrder FROM LoggingInfo WHERE JobID=%d" % int(jobID)
+ cmd = "SELECT Status,StatusTimeOrder FROM LoggingInfo WHERE JobID=%d ORDER BY StatusTimeOrder" % int(jobID)
145
resCmd = self._query(cmd)
146
if not resCmd["OK"]:
147
return resCmd
0 commit comments