From 39484f278e7e953098b97edf484a5819db1a8ac3 Mon Sep 17 00:00:00 2001 From: Nitish Tiwari Date: Fri, 26 Aug 2022 22:19:59 +0530 Subject: [PATCH] Update DO default creds --- server/src/s3.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/s3.rs b/server/src/s3.rs index 103a165b1..65b73fb8d 100644 --- a/server/src/s3.rs +++ b/server/src/s3.rs @@ -31,8 +31,8 @@ use crate::storage::{LogStream, ObjectStorage, ObjectStorageError}; const DEFAULT_S3_URL: &str = "https://sgp1.digitaloceanspaces.com"; const DEFAULT_S3_REGION: &str = "sgp1"; const DEFAULT_S3_BUCKET: &str = "parseable"; -const DEFAULT_S3_ACCESS_KEY: &str = "DO00KWGMX3M4ABBBFPCZ"; -const DEFAULT_S3_SECRET_KEY: &str = "5CqfjVsIPBjZxTOz51Bxod3Cd0FWkMLC3/vTwRavaaQ"; +const DEFAULT_S3_ACCESS_KEY: &str = "DO00YF68WC2P3QUAM82K"; +const DEFAULT_S3_SECRET_KEY: &str = "Ov6D7DvM6NHlyU4W2ajrHhRnT4IVRqKxExLPhekNIKw"; const S3_URL_ENV_VAR: &str = "P_S3_URL";