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 6378dd3 commit 6516637Copy full SHA for 6516637
src/main/java/io/bioimage/modelrunner/tensorflow/v2/api030/Tensorflow2Interface.java
@@ -489,16 +489,17 @@ else if (task.status == TaskStatus.FAILED)
489
else if (task.status == TaskStatus.CRASHED)
490
throw new RuntimeException();
491
this.runner.close();
492
+ this.runner = null;
493
return;
494
} else if (this.interprocessing) {
495
496
}
- sig = null;
497
if (model != null) {
498
model.session().close();
499
model.close();
500
501
model = null;
502
+ sig = null;
503
504
505
// TODO make only one
0 commit comments