diff --git a/package.json b/package.json index d64adbb2de4..890faf42bcd 100644 --- a/package.json +++ b/package.json @@ -154,7 +154,7 @@ "pmtiles": "^2.11.0", "postcss": "^8.4.31", "postcss-preset-env": "^9.3.0", - "posthog-js": "1.187.0", + "posthog-js": "1.187.1", "posthog-js-lite": "3.0.0", "prettier": "^2.8.8", "prop-types": "^15.7.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3d7b0a4db4a..53387867ffc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -284,8 +284,8 @@ dependencies: specifier: ^9.3.0 version: 9.3.0(postcss@8.4.31) posthog-js: - specifier: 1.187.0 - version: 1.187.0 + specifier: 1.187.1 + version: 1.187.1 posthog-js-lite: specifier: 3.0.0 version: 3.0.0 @@ -17789,8 +17789,8 @@ packages: resolution: {integrity: sha512-dyajjnfzZD1tht4N7p7iwf7nBnR1MjVaVu+MKr+7gBgA39bn28wizCIJZztZPtHy4PY0YwtSGgwfBCuG/hnHgA==} dev: false - /posthog-js@1.187.0: - resolution: {integrity: sha512-6AlM7jtpPTc+jncxQAddukUWka1T9ZCCySY+NAAQqy5zXHSvLb5g/dLWdRzhlxWiSSYDmLHBTsAhIngbGQJ6MA==} + /posthog-js@1.187.1: + resolution: {integrity: sha512-d2oNtdqXWqTVGmJf131xmVepcI/waYn9L+dM7CKm/58p89ua6ABY699UJpKlAZ9YT0UBE09QsVjrDHYCK2F5Rw==} dependencies: core-js: 3.39.0 fflate: 0.4.8 diff --git a/rust/cymbal/src/config.rs b/rust/cymbal/src/config.rs index 3bd5ae0f4c3..8ab3e69ab18 100644 --- a/rust/cymbal/src/config.rs +++ b/rust/cymbal/src/config.rs @@ -46,7 +46,7 @@ pub struct Config { #[envconfig(default = "100000000")] // 100MB - in prod, we should use closer to 1-10GB pub symbol_store_cache_max_bytes: usize, - #[envconfig(default = "http://localhost:19000")] // minio + #[envconfig(default = "http://127.0.0.1:19000")] // minio pub object_storage_endpoint: String, #[envconfig(default = "symbol_sets")] diff --git a/rust/cymbal/src/error.rs b/rust/cymbal/src/error.rs index 37bd6ae57ec..2febd84cb15 100644 --- a/rust/cymbal/src/error.rs +++ b/rust/cymbal/src/error.rs @@ -20,7 +20,7 @@ pub enum UnhandledError { KafkaError(#[from] KafkaError), #[error("Sqlx error: {0}")] SqlxError(#[from] sqlx::Error), - #[error(transparent)] + #[error("S3 error: {0}")] S3Error(#[from] Box), #[error(transparent)] ByteStreamError(#[from] ByteStreamError), // AWS specific bytestream error. Idk