Streaming stopped because connection from node to postgresql become SSL even if DB_SSLMODE is not set. (regression from #10210)
Start streaming service with postgresql which works non ssl connections. I got error log, and streaming stopped.
ERR! Error: The server does not support SSL connections
There is not DB_SSLMODE in my .env.production. As far as I investigate, "ssl" option of pg.Pool() of node not has "sslmode" option. Probabry, just only add "ssl" key, and even if it is empty, connection to postgresql become SSL.
The nodejs which I use is v8.
@sascha-sl
Looks like y'all are all over it but it broke for me as well.

yes, this issue occurs timing when probably log "verb..." if server as usual, I think.
Ah yeah, I knew we'd be better off checking for node weirdness. The sslmode property is not actually documented but used in quite of lot of searchable code on GitHub.
Most helpful comment
Ah yeah, I knew we'd be better off checking for node weirdness. The sslmode property is not actually documented but used in quite of lot of searchable code on GitHub.