@mantiq/heartbeat 0.5.16 → 0.5.18

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mantiq/heartbeat",
3
- "version": "0.5.16",
3
+ "version": "0.5.18",
4
4
  "description": "Observability, APM & queue monitoring for MantiqJS",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -51,7 +51,7 @@ export class HeartbeatServiceProvider extends ServiceProvider {
51
51
  const dbPath = storagePath.startsWith('/') ? storagePath : `${basePath}/${storagePath}`
52
52
  const dir = dbPath.substring(0, dbPath.lastIndexOf('/'))
53
53
  try { mkdirSync(dir, { recursive: true }) } catch {}
54
- connection = new SQLiteConnection({ driver: 'sqlite', database: dbPath })
54
+ connection = new SQLiteConnection({ database: dbPath })
55
55
  }
56
56
 
57
57
  const heartbeat = new Heartbeat(config, connection)