-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
could not unmarshal json from script output: EOF #1
Comments
Yes, check Settings -> Logs, the scraper should print out something like this
|
Posting the resolution here, in case anyone else finds it.
|
javstash
pushed a commit
that referenced
this issue
Feb 24, 2025
check for wget as it is not preinstalled
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've set up the database using a docker container for postgres:17.2-bookworm on port 25432. I loaded the data manually using DBeaver and Execute script. I'm able to query the DB using DBeaver and get the right result:
select *
from derived_video dv
where dv.dvd_id = 'JUR-013';
I updated my *.py file to the below (removed my local ip):
conn = psycopg2.connect(database="r18",
host="192.168.x.x",
user="postgres",
password="postgres",
port="25432")
However, when scraping on my stashapp, I get an error saying "could not unmarshal json from script output: EOF". Which leads me to think either the JSON is malformed or there's no response. Any way I can check logs?
The text was updated successfully, but these errors were encountered: