aboutsummaryrefslogtreecommitdiff
path: root/src/proxy.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-11-14 11:54:01 +0100
committermetamuffin <metamuffin@disroot.org>2023-11-14 11:54:01 +0100
commit3b1afad1d1a697e82c003e146ef2b7d5742e5210 (patch)
tree3a9e02470b4f78c4c34c0573c788da301a9e544e /src/proxy.rs
parent4a7bd84594fb8d159a0a2af02818f283eab3e716 (diff)
downloadgnix-3b1afad1d1a697e82c003e146ef2b7d5742e5210.tar
gnix-3b1afad1d1a697e82c003e146ef2b7d5742e5210.tar.bz2
gnix-3b1afad1d1a697e82c003e146ef2b7d5742e5210.tar.zst
refactor architecture and start on http basic auth
Diffstat (limited to 'src/proxy.rs')
-rw-r--r--src/proxy.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proxy.rs b/src/proxy.rs
index e8d2467..40ebf17 100644
--- a/src/proxy.rs
+++ b/src/proxy.rs
@@ -77,7 +77,7 @@ pub async fn proxy_request(
if do_upgrade {
let on_upgrade_upstream = resp.extensions_mut().remove::<OnUpgrade>();
tokio::task::spawn(async move {
- debug!("about upgrading connection, sending empty response");
+ debug!("about to upgrade connection, sending empty response");
match (
on_upgrade_upstream.unwrap().await,
on_upgrade_downstream.unwrap().await,