Describe the problem/error/question
For whatever reason, the RSS Feed trigger doesn’t work at all. If I use the RSS READ trigger, I get data. But the RSS Feed Trigger displays an instant “No RSS Feed data found. We didn’t find any data in RSS Feed to simulate an event. Please create one in RSS Feed and try again.” No matter which RSS feed I give the trigger, it always returns this error.
What is the error message (if any)?
“No RSS Feed data found. We didn’t find any data in RSS Feed to simulate an event. Please create one in RSS Feed and try again.” Is there a way to get more info on why the trigger is failing?
Please share your workflow
Share the output returned by the last node
No RSS Feed data found. We didn’t find any data in RSS Feed to simulate an event. Please create one in RSS Feed and try again.
Information on your n8n setup
- n8n version: 1.95.3
- Database (default: SQLite): SQLite (but redis and postgresDB are also available on the same docker compsoe_
- n8n EXECUTIONS_PROCESS setting (default: own, main): No sure what this means.
- Running n8n via (Docker, npm, n8n cloud, desktop app): docker compose file
- Operating system: Ubuntu (but n8n runs in docker). I have Nginx Proxy manager set up if that makes any difference.
Contents of docker compose file:
version: “3.9”
########################### NETWORKS
networks:
traefik_proxy:
external:
name: traefik_proxy
default:
driver: bridge
########################### SERVICES
services:
n8n:
image: n8nio/n8n:latest
hostname: n8n
container_name: n8n
restart: unless-stopped
depends_on:
- n8n_postgres
- n8n_redis
security_opt:
- no-new-privileges
env_file:
- .env
networks:
- traefik_proxy
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- NODE_ENV=production
- GENERIC_TIMEZONE=Europe/Amsterdam
- N8N_SECURE_COOKIE=false
- N8N_DEFAULT_BINARY_DATA_MODE=filesystem
- N8N_BINARY_DATA_STORAGE_PATH=/home/node/.n8n/binary
- N8N_RUNNERS_ENABLED=true
- DB_TYPE=postgresdb
- DB_POSTGRESDB_HOST=fake
- DB_POSTGRESDB_PORT=fake
- DB_POSTGRESDB_DATABASE=n8ndb
- DB_POSTGRESDB_USER=fake
- DB_POSTGRESDB_PASSWORD=fake
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=false
- QUEUE_MODE=redis
- QUEUE_REDIS_HOST=redis
volumes:
- $USERDIR/docker/n8n/data:/home/node/.n8n
- $USERDIR/docker/n8n/files:/files
ports:
- 5678:5678
n8n_postgres:
image: postgres:15
container_name: n8n_postgres
restart: always
environment:
POSTGRES_USER: fake
POSTGRES_PASSWORD: fake
POSTGRES_DB: n8ndb
networks:
- traefik_proxy
volumes:
- $USERDIR/docker/n8n_postgres/data:/var/lib/postgresql/data
ports:
- “5432:5432”
n8n_redis:
image: redis:7
container_name: n8n_redis
restart: always
networks:
- traefik_proxy
volumes:
- $USERDIR/docker/n8n_redis/data:/data
ports:
- “6380:6379”
