@dbcube/core 1.0.46 → 1.0.50

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/dist/index.js CHANGED
@@ -572,7 +572,7 @@ var Engine = class {
572
572
  args = [
573
573
  "--id",
574
574
  "dbcube-" + this.name,
575
- "--database",
575
+ "--database-ref",
576
576
  this.name,
577
577
  "--database",
578
578
  this.config.config.DATABASE + ".db",
@@ -583,7 +583,7 @@ var Engine = class {
583
583
  args = [
584
584
  "--id",
585
585
  "dbcube-" + this.name,
586
- "--database",
586
+ "--database-ref",
587
587
  this.name,
588
588
  "--database",
589
589
  this.config.config.DATABASE,
@@ -628,6 +628,7 @@ var Engine = class {
628
628
  }
629
629
  async run(binary, args) {
630
630
  await this.initializeBinary();
631
+ console.log(this.binary);
631
632
  if (!this.binary) {
632
633
  throw new Error("Binary not initialized");
633
634
  }