Search returned no hits #101

Open
opened 2025-11-20 04:17:00 -05:00 by saavagebueno · 2 comments
Owner

Originally created by @InvalidSun on GitHub (Jul 6, 2024).

I've attempted searches on multiple different shows/movies and all returned with no hits. The console returns the following error.

2024-07-06 22:24:09 2024-07-07T02:24:09.382Z 715d15c7be59 INFO [doplarr.interaction-state-machine:28] - Performing search for movie Taken 3
2024-07-06 22:24:09 2024-07-07T02:24:09.386Z 715d15c7be59 FATAL [doplarr.utils:79] -
2024-07-06 22:24:09 java.lang.Thread.run
2024-07-06 22:24:09 java.util.concurrent.ThreadPoolExecutor$Worker.run
2024-07-06 22:24:09 java.util.concurrent.ThreadPoolExecutor.runWorker
2024-07-06 22:24:09 java.util.concurrent.CompletableFuture$AsyncSupply.run
2024-07-06 22:24:09 java.util.concurrent.CompletableFuture.postComplete
2024-07-06 22:24:09 java.util.concurrent.CompletableFuture$UniHandle.tryFire
2024-07-06 22:24:09 java.util.concurrent.CompletableFuture.uniHandle
2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$1
2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.checkRetryConnect
2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.connectAsync
2024-07-06 22:24:09 java.security.AccessController.doPrivileged
2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0
2024-07-06 22:24:09 sun.nio.ch.SocketChannelImpl.connect
2024-07-06 22:24:09 sun.nio.ch.SocketChannelImpl.beginConnect
2024-07-06 22:24:09 sun.nio.ch.SocketChannelImpl.ensureOpen
2024-07-06 22:24:09 java.nio.channels.ClosedChannelException:
2024-07-06 22:24:09 java.net.ConnectException:
2024-07-06 22:24:09 java.util.concurrent.CompletionException: java.net.ConnectException

Originally created by @InvalidSun on GitHub (Jul 6, 2024). I've attempted searches on multiple different shows/movies and all returned with no hits. The console returns the following error. 2024-07-06 22:24:09 2024-07-07T02:24:09.382Z 715d15c7be59 INFO [doplarr.interaction-state-machine:28] - Performing search for movie Taken 3 2024-07-06 22:24:09 2024-07-07T02:24:09.386Z 715d15c7be59 FATAL [doplarr.utils:79] - 2024-07-06 22:24:09 java.lang.Thread.run 2024-07-06 22:24:09 java.util.concurrent.ThreadPoolExecutor$Worker.run 2024-07-06 22:24:09 java.util.concurrent.ThreadPoolExecutor.runWorker 2024-07-06 22:24:09 java.util.concurrent.CompletableFuture$AsyncSupply.run 2024-07-06 22:24:09 java.util.concurrent.CompletableFuture.postComplete 2024-07-06 22:24:09 java.util.concurrent.CompletableFuture$UniHandle.tryFire 2024-07-06 22:24:09 java.util.concurrent.CompletableFuture.uniHandle 2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$1 2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.checkRetryConnect 2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.connectAsync 2024-07-06 22:24:09 java.security.AccessController.doPrivileged 2024-07-06 22:24:09 jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0 2024-07-06 22:24:09 sun.nio.ch.SocketChannelImpl.connect 2024-07-06 22:24:09 sun.nio.ch.SocketChannelImpl.beginConnect 2024-07-06 22:24:09 sun.nio.ch.SocketChannelImpl.ensureOpen 2024-07-06 22:24:09 java.nio.channels.ClosedChannelException: 2024-07-06 22:24:09 java.net.ConnectException: 2024-07-06 22:24:09 java.util.concurrent.CompletionException: java.net.ConnectException
Author
Owner

@FaridLazouache commented on GitHub (Aug 6, 2024):

Had the same error and fixed it using my local network address instead of localhost

Now

docker run \
-e SONARR__URL='http://192.168.1.195:8989/' \
-e RADARR__URL='http://192.168.1.195:7878/' \
-e SONARR__API='it is private :)' \
-e RADARR__API='it is private :)' \
-e DISCORD__TOKEN=it is private :) \
--name doplarr ghcr.io/kiranshila/doplarr:latest 

Before

docker run \
-e SONARR__URL='http://localhost:8989/' \
-e RADARR__URL='http://localhost:7878/' \
-e SONARR__API='it is private :)' \
-e RADARR__API='it is private :)' \
-e DISCORD__TOKEN=it is private :) \
--name doplarr ghcr.io/kiranshila/doplarr:latest 
@FaridLazouache commented on GitHub (Aug 6, 2024): Had the same error and fixed it using my local network address instead of localhost # Now ```sh docker run \ -e SONARR__URL='http://192.168.1.195:8989/' \ -e RADARR__URL='http://192.168.1.195:7878/' \ -e SONARR__API='it is private :)' \ -e RADARR__API='it is private :)' \ -e DISCORD__TOKEN=it is private :) \ --name doplarr ghcr.io/kiranshila/doplarr:latest ``` # Before ```sh docker run \ -e SONARR__URL='http://localhost:8989/' \ -e RADARR__URL='http://localhost:7878/' \ -e SONARR__API='it is private :)' \ -e RADARR__API='it is private :)' \ -e DISCORD__TOKEN=it is private :) \ --name doplarr ghcr.io/kiranshila/doplarr:latest ```
Author
Owner

@Wtfitsaduck commented on GitHub (Dec 23, 2024):

This looks like a generic network failure. Just make sure your Doplarr can reach Overseerr. If you share your setup I can help you troubleshoot it 🙂

@Wtfitsaduck commented on GitHub (Dec 23, 2024): This looks like a generic network failure. Just make sure your Doplarr can reach Overseerr. If you share your setup I can help you troubleshoot it 🙂
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Doplarr#101