You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a feature request to make the network="tcp" parameter used here configurable. In our case we would like to use unix as the value here.
Some Background:
I'm using endless in a couple of services and liking it very much 😄
But we are now working on a lite, offline version of our service stack, in which clients connect to a service on the same machine. Here we don't actually need TCP sockets for communication, but can instead use unix sockets directly. Unfortunately I couldn't figure out a way to do this while still using endless.
The Go stdlib supports this out of the box, the only change required was:
However, with endless, that part seems to be not configurable.
There seems to be same additional logic for listening on a file already, but only if the ENDLESS_CONTINUE environment variable is set, which then sets isChild to true. I didn't want to mess around in that direction to much.
Is there any chance something like this could be added to endless?
The text was updated successfully, but these errors were encountered:
Hi,
This is a feature request to make the
network="tcp"
parameter used here configurable. In our case we would like to useunix
as the value here.Some Background:
I'm using endless in a couple of services and liking it very much 😄
But we are now working on a lite, offline version of our service stack, in which clients connect to a service on the same machine. Here we don't actually need TCP sockets for communication, but can instead use
unix
sockets directly. Unfortunately I couldn't figure out a way to do this while still using endless.The Go stdlib supports this out of the box, the only change required was:
to
However, with endless, that part seems to be not configurable.
There seems to be same additional logic for listening on a file already, but only if the
ENDLESS_CONTINUE
environment variable is set, which then setsisChild
to true. I didn't want to mess around in that direction to much.Is there any chance something like this could be added to endless?
The text was updated successfully, but these errors were encountered: