Skip to content

Commit

Permalink
fix: Comment out telemetry (#77)
Browse files Browse the repository at this point in the history
* Comment out telemetry

* Comment out
  • Loading branch information
philippemnoel committed Aug 13, 2024
1 parent be48684 commit 8c2130b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use hooks::ExtensionHook;
use pgrx::*;
use shared::{
gucs::PostgresGlobalGucSettings,
telemetry::{setup_telemetry_background_worker, ParadeExtension},
// telemetry::{setup_telemetry_background_worker, ParadeExtension},
};

// A static variable is required to host grand unified configuration settings.
Expand All @@ -44,7 +44,8 @@ pub extern "C" fn _PG_init() {

GUCS.init("pg_analytics");

setup_telemetry_background_worker(ParadeExtension::PgAnalytics);
// TODO: Reactivate once we've properly integrated with the monorepo
// setup_telemetry_background_worker(ParadeExtension::PgAnalytics);
}

#[cfg(test)]
Expand Down

0 comments on commit 8c2130b

Please sign in to comment.