@@ -30,7 +30,6 @@ import { Celery } from './utils/db/celery'
3030import { DB } from './utils/db/db'
3131import { PostgresRouter } from './utils/db/postgres'
3232import { GeoIPService } from './utils/geoip'
33- import { ObjectStorage } from './utils/object_storage'
3433import { PubSub } from './utils/pubsub'
3534import { TeamManager } from './utils/team-manager'
3635import { UUID } from './utils/utils'
@@ -371,12 +370,6 @@ export interface PluginsServerConfig extends CdpConfig, IngestionConsumerConfig,
371370 KAFKA_PARTITIONS_CONSUMED_CONCURRENTLY : number // (advanced) how many kafka partitions the plugin server should consume from concurrently
372371 PERSON_INFO_CACHE_TTL : number
373372 KAFKA_HEALTHCHECK_SECONDS : number
374- OBJECT_STORAGE_ENABLED : boolean // Disables or enables the use of object storage. It will become mandatory to use object storage
375- OBJECT_STORAGE_REGION : string // s3 region
376- OBJECT_STORAGE_ENDPOINT : string // s3 endpoint
377- OBJECT_STORAGE_ACCESS_KEY_ID : string
378- OBJECT_STORAGE_SECRET_ACCESS_KEY : string
379- OBJECT_STORAGE_BUCKET : string // the object storage bucket name
380373 PLUGIN_SERVER_MODE : PluginServerMode | null
381374 PLUGIN_SERVER_EVENTS_INGESTION_PIPELINE : string | null // TODO: shouldn't be a string probably
382375 PLUGIN_LOAD_SEQUENTIALLY : boolean // could help with reducing memory usage spikes on startup
@@ -515,7 +508,6 @@ export interface Hub extends PluginsServerConfig {
515508 cookielessRedisPool : GenericPool < Redis >
516509 kafka : Kafka
517510 kafkaProducer : KafkaProducerWrapper
518- objectStorage ?: ObjectStorage
519511 // currently enabled plugin status
520512 plugins : Map < PluginId , Plugin >
521513 pluginConfigs : Map < PluginConfigId , PluginConfig >
0 commit comments