You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This correctly returns results (i.e. the calendar is correctly displayed when searching) but when trying to view a resource, a NullPointerException is thrown:
WARNING: Runtime Error
java.lang.NullPointerException
at org.archive.wayback.replay.DateRedirectingClosestResultSelector.getClosest(DateRedirectingClosestResultSelector.java:40)
at org.archive.wayback.replay.SelectorReplayDispatcher.getClosest(SelectorReplayDispatcher.java:71)
at org.archive.wayback.webapp.AccessPoint.handleReplay(AccessPoint.java:677)
at org.archive.wayback.webapp.AccessPoint.handleRequest(AccessPoint.java:311)
This seems to be correct as the closest result in the CaptureSearchResults never gets set.
The text was updated successfully, but these errors were encountered:
Tried to fix this in #194—the LocalResourceIndex uses a ClosestResultTrackingFilter which annotates the results and marks the closest. I've tried to duplicate that process here.
We've configured a
RemoteResourceIndex
as follows (inCDXCollection.xml
):This correctly returns results (i.e. the calendar is correctly displayed when searching) but when trying to view a resource, a
NullPointerException
is thrown:This seems to be correct as the
closest
result in theCaptureSearchResults
never gets set.The text was updated successfully, but these errors were encountered: