d01
d01
True, but from my understanding are heartbeat and rx two different loops in two threads. So when the rx-thread does (network) io work, like socket listen/receive, shouldn't that then execute...
That is not entirely true. You could write your own start script. Lets call it `mynameko.py`: ``` python from nameko.cli.main import main from kombu.serialization import register def encode(value): # Encode...
I played a little with this and I think I got a basic version working. @derneuere would you be willing to include a simple implementation that only handles adding/showing photos...
Actually it has to do with the server being overloaded (see the first comment here: http://www.reddit.com/r/learnpython/comments/1wqxv8/connection_forcibly_closing_err_10054_in_web/) That "exponential backoff" would look something like this: ``` python sleepTime = 1.0 while...
That should be covert via #10, but as mentioned above, @j1nx is busy so it might take a while to get merged
I found some instructions with docker compose at https://help.ente.io/self-hosting/
docker/docker-compose are basically only user interfaces to the docker service much in the same way the web ui is for OliveTin. You push the button on the website which sends...