Http in timed out

Hi,
I have a problem with Http in node.
I get timeout response on client but I receive the message correctly.
I don't understand why?
Can you help?

My environment :
nodered on docker swarm through traefik.
here is the compose:

version: '3'

services:
  nodered:
    image: nodered/node-red:2.1.3
    volumes: 
      - /etc/localtime:/etc/localtime:ro
      - /mnt/dockernfs/nodered/data/:/data
    networks:
      - traefik_net
    deploy:
#      placement:                                                                                                                                             
#        constraints:
#          - node.hostname==docker1
      replicas: 1                                                                                                                                         
      labels:
        - "traefik.docker.network=traefik_net"
        - "traefik.enable=true"
    ports:
       - 3456:3456
       - 1882:1880
    environment:
       - TZ=Europe/Paris
#    command: --no-healthcheck
networks:
    traefik_net:
        external: true

thanks

When using a http in node you have to also respond using the http response node. You also have to make sure msg.res makes it to the http response node, from the http in node.

Oh its a shame for me
Thank you

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