Skip to content

Commit

Permalink
fix: flaky gcs test (#1987)
Browse files Browse the repository at this point in the history
# Description

The GCS tests seem to be failing sometimes, looked around and hoping
this change fixes that.
  • Loading branch information
roeap authored Dec 20, 2023
1 parent 7832526 commit c14d577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/deltalake-core/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl IntegrationContext {
if let StorageIntegration::Google = integration {
gs_cli::prepare_env();
let base_url = std::env::var("GOOGLE_BASE_URL")?;
let token = json!({"gcs_base_url": base_url, "disable_oauth": true, "client_email": "", "private_key": ""});
let token = json!({"gcs_base_url": base_url, "disable_oauth": true, "client_email": "", "private_key": "", "private_key_id": ""});
let account_path = tmp_dir.path().join("gcs.json");
std::fs::write(&account_path, serde_json::to_vec(&token)?)?;
set_env_if_not_set(
Expand Down

0 comments on commit c14d577

Please sign in to comment.