@bian-womp/spark-workbench 0.3.86 → 0.3.87

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/lib/cjs/index.cjs CHANGED
@@ -1357,9 +1357,9 @@ class LocalGraphRunner extends AbstractGraphRunner {
1357
1357
  this.engine.setInputs(nodeId, map);
1358
1358
  }
1359
1359
  }
1360
- async computeNode(nodeId, options) {
1360
+ async computeNode(nodeId) {
1361
1361
  if (this.engine)
1362
- await this.engine.computeNode(nodeId, options);
1362
+ await this.engine.computeNode(nodeId);
1363
1363
  }
1364
1364
  async runFromHere(nodeId) {
1365
1365
  if (this.engine)
@@ -1970,9 +1970,9 @@ class RemoteGraphRunner extends AbstractGraphRunner {
1970
1970
  this.emit("status", { running: true, runMode });
1971
1971
  }
1972
1972
  }
1973
- async computeNode(nodeId, options) {
1973
+ async computeNode(nodeId) {
1974
1974
  const client = await this.ensureClient();
1975
- await client.engine.computeNode(nodeId, options);
1975
+ await client.engine.computeNode(nodeId);
1976
1976
  }
1977
1977
  async runFromHere(nodeId) {
1978
1978
  const client = await this.ensureClient();