Skip to content

Commit

Permalink
increase timeout to allow for cas to be set up
Browse files Browse the repository at this point in the history
  • Loading branch information
shroffk committed Sep 9, 2019
1 parent 8af35bf commit dfd18ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void createSimpleWriteChannel() throws InterruptedException {
ProbeCollector probe = ProbeCollector.create();
PVEventRecorder recorder = probe.getRecorder();
PV<VType, Object> pv = gpClient.readAndWrite("ca://test_double_0").addListener(recorder).start();
recorder.wait(500, PVEventRecorder.forAConnectionEvent());
recorder.wait(1000, PVEventRecorder.forAConnectionEvent());
recorder.wait(100, PVEventRecorder.anEventOfType(PVEvent.Type.VALUE));
pv.write(VDouble.of(1.0, Alarm.none(), Time.now(), Display.none()));
Thread.sleep(1000);
Expand Down

0 comments on commit dfd18ee

Please sign in to comment.