> I'm trying to setup a fastrouter with a fallback that in the same > process/config. Should this config work, because it doesn't for me: > > The fastrouter just closes the connection to nginx as if it didn't > have a fallback. > > [uwsgi] > master = true > > plugin = fastrouter > fastrouter = @fastrouter > fastrouter-subscription-server = 127.0.0.1:54321 > fastrouter-fallback = @fallback > subscription-dotsplit = true > > socket = @fallback > static-check = %d > static-index = index.html > > > -- > damjan > _______________________________________________ > uWSGI mailing list > [email protected] > http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi >
you are right, on no key-found the fallback procedure is skipped as it is generally triggered only on connection error. I have added the --fastrouter-fallback-on-no-key option/flag https://github.com/unbit/uwsgi/commit/84d6f54ddd879650cf4b0d827598630e629e0496 unfortuately i do not think it can be added flawlessly to the httprouter too (eventually it is something for 2.1 branch) Let me know if it works well for you so i can forward-port it to 2.1 -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
