kiranshila / Doplarr

An *arr request bot for Discord
MIT License
425 stars 30 forks source link

Search returned no hits #142

Open InvalidSun opened 1 month ago

InvalidSun commented 1 month ago

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

FaridLazouache commented 3 weeks ago

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