scheduler-services 1.5.10 → 1.5.12

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.
Files changed (2) hide show
  1. package/logService.js +1 -1
  2. package/package.json +1 -1
package/logService.js CHANGED
@@ -196,7 +196,7 @@ class LogService {
196
196
  if (sqldb_1.mdbConnection.pool) {
197
197
  conn = await sqldb_1.mdbConnection.pool.getConnection();
198
198
  const sql = "SELECT * FROM logentries WHERE application = ? AND messageid >= '?' "
199
- + "AND messageid = '?' ORDER BY messageid;";
199
+ + "AND messageid < '?' ORDER BY messageid;";
200
200
  const logVals = [application, this.convertDate(start), this.convertDate(end)];
201
201
  const results = await conn.query(sql, logVals);
202
202
  results.forEach((row) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-services",
3
- "version": "1.5.10",
3
+ "version": "1.5.12",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [