jkarneges on develop
ensure keep-alives are sent in … (compare)
jkarneges on master
handler: make http publish maxi… Merge pull request #47691 from … Merge remote-tracking branch 'o… and 7 more (compare)
jkarneges on v1.31.0
jkarneges on develop
update version (compare)
jkarneges on develop
use condure by default (compare)
jkarneges on develop
runner: support for ssl ports w… (compare)
jkarneges on develop
ensure queueable events are onl… (compare)
jkarneges on develop
avoid adding extra minutes to r… (compare)
jkarneges on develop
handler: split out wssession make it possible to refresh web… (compare)
jkarneges on develop
readme nits, remove mailing list Merge remote-tracking branch 'o… (compare)
jkarneges on master
readme nits, remove mailing list (compare)
jkarneges on develop
handler: make http publish maxi… Merge pull request #47691 from … (compare)
jkarneges on v1.30.0
jkarneges on master
limit body bytes to internal bu… runner: support condure service use client_maxconn and condure_… and 1 more (compare)
jkarneges on develop
update version (compare)
jkarneges on develop
use client_maxconn and condure_… (compare)
jkarneges on develop
runner: support condure service (compare)
jkarneges on develop
limit body bytes to internal bu… (compare)
jkarneges on v1.29.0
jkarneges on master
fix crash when parsing accept h… provide credits on websocket ac… fix crash when response hold ti… and 10 more (compare)
message_rate
Hi everyone :wave: I'm seeing that, when I connect to my pushpin server, if I lose the connection to the server (i.e. a network cut), Pushpin takes around 15 minutes to see that the connection has gone. At which it logs in the error_XXXX.log
file:
Mon, 26 Oct 2020 14:33:28 GMT [ERROR] (src/io.c:777: errno: Transport endpoint is not connected) Write error when sending all.
Mon, 26 Oct 2020 14:33:28 GMT [ERROR] (src/connection.c:1230: errno: None) Error delivering to MSG listener on FD -1, closing them.
Is there some parameter for configuring the time Pushpin holds on to this connection?
ws.sendControl({"type": "keep-alive", "message-type": "ping", "content": "", "timeout": 30})
ws.recv()
returns null, call ws.close()
) and ignore disconnects
ws.sendControl({"type": "keep-alive", "content": "still alive", "timeout": 30})
Hi @jkarneges
I am trying to send messages to pushping using 0mq but I am unable to do it, I am using the following code:
ZMQ.Context context = ZMQ.context(1);
ZMQ.Socket publisher = context.socket(ZMQ.PUB);
publisher.connect("tcp://" + ip + ":5562");
publisher.send("J{\"id\": \"an-item-id\", \"channel\": \"test\", \"formats\": {\"http-stream\": {\"content\": \"a chunk of data\n\"}}}",0);
publisher.close();
context.term();
I am also using the following versions of 0MQ,
zeromq-4.1.4
zeromq/jzmq
The code does not display an error but messages are not appearing in pushpin logs.
Any suggestion related to this? might I be missing something?