mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 13:39:22 +01:00
Merge branch 'master' into dw-editor-visualization
This commit is contained in:
commit
661eb29886
@ -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",
|
||||
|
@ -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
|
||||
|
@ -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")]
|
||||
|
@ -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<aws_sdk_s3::Error>),
|
||||
#[error(transparent)]
|
||||
ByteStreamError(#[from] ByteStreamError), // AWS specific bytestream error. Idk
|
||||
|
Loading…
Reference in New Issue
Block a user