We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8c0725 commit 716a622Copy full SHA for 716a622
src/main/java/io/bioimage/modelrunner/tensorflow/v1/Tensorflow1Interface.java
@@ -514,16 +514,17 @@ else if (task.status == TaskStatus.FAILED)
514
else if (task.status == TaskStatus.CRASHED)
515
throw new RuntimeException();
516
this.runner.close();
517
+ this.runner = null;
518
return;
519
} else if (this.interprocessing) {
520
521
}
- sig = null;
522
if (model != null) {
523
model.session().close();
524
model.close();
525
526
model = null;
527
+ sig = null;
528
529
530
// TODO make only one
0 commit comments