Skip to content

Commit 9485b66

Browse files
committed
flowctl: fix default config-encryption url
I fat-fingered this URL when I made it a lazy static, so this just removes the extra `s`.
1 parent 4949384 commit 9485b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/flow-client/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ lazy_static::lazy_static! {
5757
pub static ref DEFAULT_AGENT_URL: url::Url = url::Url::parse("https://agent-api-1084703453822.us-central1.run.app").unwrap();
5858
pub static ref DEFAULT_DASHBOARD_URL: url::Url = url::Url::parse("https://dashboard.estuary.dev/").unwrap();
5959
pub static ref DEFAULT_PG_URL: url::Url = url::Url::parse("https://eyrcnmuzzyriypdajwdk.supabase.co/rest/v1").unwrap();
60-
pub static ref DEFAULT_CONFIG_ENCRYPTION_URL: url::Url = url::Url::parse("https://config-encryptions.estuary.dev/").unwrap();
60+
pub static ref DEFAULT_CONFIG_ENCRYPTION_URL: url::Url = url::Url::parse("https://config-encryption.estuary.dev/").unwrap();
6161

6262
// Used only when profile is "local".
6363
pub static ref LOCAL_AGENT_URL: url::Url = url::Url::parse("http://localhost:8675/").unwrap();

0 commit comments

Comments
 (0)