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 b91eae1 commit 212ac34Copy full SHA for 212ac34
src/test/java/org/numenta/nupic/network/NetworkTest.java
@@ -450,7 +450,11 @@ public void onNext(Inference inf) {
450
});
451
452
network.halt();
453
- try { network.lookup("r1").lookup("1").getLayerThread().join(3000); }catch(Exception e) { e.printStackTrace(); }
+ try {
454
+ network.lookup("r1").lookup("1").getLayerThread().join(3000);
455
+ // Add a little more wait time
456
+ Thread.sleep(3000);
457
+ }catch(Exception e) { e.printStackTrace(); }
458
network.restart();
459
460
Publisher newPub = network.getPublisher();
0 commit comments