Credentials on Custom Nodes | Custom Nodes don't work after restart

Hello yall!

first of im pretty new to n8n so i am sorry if this is maybe something which is intentional.

I have two questiosn, the first is that i’ve installed some community nodes just to play around with them. Most of those need as any other node credentials, but normally on n8n i can click on Select Credential and then Create a new one but this didn’t work with any of the custom community ones i installed. I tested this with quite few community nodes so i don’t think it s a problem of the node?

chrome_VwIHHvzkTc

The second question i have is, that when i restart my n8n instance (i installed it using docker compose) the community nodes are still installed BUT i cant find them anymore in the Node list in my workflows.

Heres my docker-compose file, maybe something is wrong with it:

version: "3.7"

services:
  n8n:
    image: docker.n8n.io/n8nio/n8n
    restart: always
    ports:
      - 5678:5678
    environment:
      - N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}
      - N8N_PORT=5678
      - N8N_PROTOCOL=https
      - NODE_ENV=production
      - WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/
      - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
    volumes:
      - n8n_data:/home/node/.n8n
      - /home/ubuntu/n8n-local-files:/files

volumes:
  n8n_data:
    external: true

I removed treafik as i have apache installed and i use it as a reverse proxy.

  • n8n version: 1.47.3
  • Database (default: SQLite): SQLite
  • n8n EXECUTIONS_PROCESS setting (default: own, main): own, main
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
  • Operating system: Ubuntu

This is very likely the same issue as No testing function found for this credential (non-versioned node) · Issue #8188 · n8n-io/n8n · GitHub

We have draft PR to fix this, but the fix is a bit convoluted right now.

If we don’t manage to get this out before the next week’s release, please let us know if this is blocking you; we can try to put it a temporary fix in the next release.

Hello @netroy,

oh so both of my question come from the same issue? Amazing to know that you guys are working on it.

And yes a temporary fix would be amazing!

I was able to resolve this by clearing the browser cache.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.