Skip to content

Commit d4e037e

Browse files
committed
change runner, remove logs
1 parent 01fb5c2 commit d4e037e

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

.github/workflows/checks.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ env:
1919
jobs:
2020
check:
2121
name: Format & Lint
22-
runs-on: xl-runner
2322
steps:
2423
- uses: actions/checkout@v4
2524
- uses: dtolnay/rust-toolchain@master

orchestrator/src/utils/google_cloud.rs

-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ pub async fn generate_upload_signed_url(
1515
// Decode base64 to JSON string
1616
let credentials_json = general_purpose::STANDARD.decode(credentials_base64)?;
1717
let credentials_str = String::from_utf8(credentials_json)?;
18-
println!("credentials_str: {}", credentials_str);
1918

2019
// Create client config directly from the JSON string
2120
let credentials = CredentialsFile::new_from_str(&credentials_str)
@@ -39,6 +38,5 @@ pub async fn generate_upload_signed_url(
3938
let signed_url = client
4039
.signed_url(bucket, object_path, None, None, options)
4140
.await?;
42-
println!("signed_url: {}", signed_url);
4341
Ok(signed_url)
4442
}

0 commit comments

Comments
 (0)