Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove debug logs #11

Merged
merged 1 commit into from
Jan 18, 2024

Remove debug logs

49d6f9e
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Remove debug logs #11

Remove debug logs
49d6f9e
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jan 18, 2024 in 0s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.77.0-nightly (6ae4cfbbb 2024-01-17)
  • cargo 1.77.0-nightly (1cff2ee6b 2024-01-16)
  • clippy 0.1.77 (6ae4cfb 2024-01-17)

Annotations

Check warning on line 83 in azure-kusto-data/src/operations/query.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the method `send` doesn't need a mutable reference

warning: the method `send` doesn't need a mutable reference
  --> azure-kusto-data/src/operations/query.rs:83:19
   |
83 |             .send(&mut context, &mut request)
   |                   ^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed

Check warning on line 65 in azure-kusto-data/src/cloud_info.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the method `send` doesn't need a mutable reference

warning: the method `send` doesn't need a mutable reference
  --> azure-kusto-data/src/cloud_info.rs:65:38
   |
65 |         let response = pipeline.send(&mut Context::new(), &mut request).await?;
   |                                      ^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed
   = note: `#[warn(clippy::unnecessary_mut_passed)]` on by default