> I don't understand what I'm doing wrong here, maybe everything:
>
> in one terminal I run::
>
>     uwsgi -M --http :8888 --http-subscription-server :2626
>
> in a second::
>
>     uwsgi --subscribe-to 127.0.0.1:2626:localhost -s 127.0.0.1:0 -w \
>             werkzeug.testapp:test_app
>
>

All correct, but you have to subscribe as localhost:8888 instead of localhost

uwsgi --subscribe-to 127.0.0.1:2626:localhost:8888 -s 127.0.0.1:0 -w
werkzeug.testapp:test_app

-- 
Roberto De Ioris
http://unbit.it
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to