diff options
author | Andrew Hauck <[email protected]> | 2024-03-08 15:10:18 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-03-08 15:10:18 -0800 |
commit | 36e09ca389dac053948722a8ed24caa011495439 (patch) | |
tree | 26e50694a0f0911921b0e475b5dce37c55b241a7 /docs | |
parent | 9308bec790269043f87cec1ddbb7ea6e7a5a5f1d (diff) | |
download | pingora-36e09ca389dac053948722a8ed24caa011495439.tar.gz pingora-36e09ca389dac053948722a8ed24caa011495439.zip |
Synchronize internally merged commits (#124)
Co-authored-by: Kevin Guthrie <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/quick_start.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_start.md b/docs/quick_start.md index 2c5ada8..75f3704 100644 --- a/docs/quick_start.md +++ b/docs/quick_start.md @@ -77,7 +77,7 @@ impl ProxyHttp for LB { .select(b"", 256) // hash doesn't matter for round robin .unwrap(); - println!("upstream peer is: {:upstream?}"); + println!("upstream peer is: {upstream:?}"); // Set SNI to one.one.one.one let peer = Box::new(HttpPeer::new(upstream, true, "one.one.one.one".to_string())); |