We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42bc209 commit eabb9acCopy full SHA for eabb9ac
src/main/java/io/bioimage/modelrunner/tensorflow/v2/api020/Tensorflow2Interface.java
@@ -502,16 +502,17 @@ else if (task.status == TaskStatus.FAILED)
502
else if (task.status == TaskStatus.CRASHED)
503
throw new RuntimeException();
504
this.runner.close();
505
+ this.runner = null;
506
return;
507
} else if (this.interprocessing) {
508
509
}
- sig = null;
510
if (model != null) {
511
model.session().close();
512
model.close();
513
514
model = null;
515
+ sig = null;
516
517
518
// TODO make only one
0 commit comments