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 0b3ae52 commit e190b3fCopy full SHA for e190b3f
core/pva/src/main/java/org/epics/pva/client/BeaconTracker.java
@@ -162,7 +162,7 @@ private void removeOldBeaconInfo(final Instant now)
162
{
163
final BeaconInfo info = infos.next().getValue();
164
final long age = Duration.between(info.last, now).getSeconds();
165
- if (age > 180) // TODO beacon_cleanup_period
+ if (age > PVASettings.EPICS_PVA_MAX_BEACON_AGE)
166
167
logger.log(Level.FINER,
168
() -> "Removing beacon info " + info.guid + " (" + info.address + "), last seen " + age + " seconds ago");
0 commit comments