From 9e4c4551a786830bf34d74c4ef111a8ed292fa9f Mon Sep 17 00:00:00 2001 From: Vika Date: Tue, 15 Feb 2022 02:44:33 +0300 Subject: WIP: convert to Tokio and Warp Warp allows requests to be applied as "filters", allowing to flexibly split up logic and have it work in a functional style, similar to pipes. Tokio is just an alternative runtime. I thought that maybe switching runtimes and refactoring the code might allow me to fish out that pesky bug with the whole application hanging after a certain amount of requests... --- dev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev.sh') diff --git a/dev.sh b/dev.sh index 1faca15..6ebbd2a 100755 --- a/dev.sh +++ b/dev.sh @@ -1,5 +1,5 @@ #!/bin/sh -export RUST_LOG="debug,retainer::cache=warn,html5ever=info" +export RUST_LOG="debug,retainer::cache=warn,html5ever=info,hyper::proto=info" export BACKEND_URI=file://./test-dir export TOKEN_ENDPOINT=https://token.indieauth.com/token export AUTHORIZATION_ENDPOINT=https://indieauth.com/auth -- cgit 1.4.1