Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from ericswanson-dfinity/toolchain-1.55.0-lint
Browse files Browse the repository at this point in the history
chore: lint (clippy) with 1.55.0 toolchain
  • Loading branch information
Daniel-Bloom-dfinity authored Nov 4, 2021
2 parents 788c1cd + 8322c0d commit d2cd4d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust: [ '1.52.1' ]
rust: [ '1.52.1', '1.55.0' ]
os: [ ubuntu-latest ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ async fn forward_api(
request: Request<Body>,
replica_url: &str,
) -> Result<Response<Body>, Box<dyn Error>> {
let proxied_request = create_proxied_request(ip_addr, &replica_url, request)?;
let proxied_request = create_proxied_request(ip_addr, replica_url, request)?;

let client = Client::builder().build(hyper_tls::HttpsConnector::new());
let response = client.request(proxied_request).await?;
Expand Down

0 comments on commit d2cd4d8

Please sign in to comment.