Change summary
crates/client/src/telemetry.rs | 12 ++++++------
crates/client2/src/telemetry.rs | 12 ++++++------
crates/editor2/src/editor.rs | 2 +-
crates/zed2/src/main.rs | 2 +-
4 files changed, 14 insertions(+), 14 deletions(-)
Detailed changes
@@ -111,16 +111,16 @@ pub enum ClickhouseEvent {
},
}
-// #[cfg(debug_assertions)]
-// const MAX_QUEUE_LEN: usize = 1;
+#[cfg(debug_assertions)]
+const MAX_QUEUE_LEN: usize = 1;
-// #[cfg(not(debug_assertions))]
+#[cfg(not(debug_assertions))]
const MAX_QUEUE_LEN: usize = 10;
-// #[cfg(debug_assertions)]
-// const DEBOUNCE_INTERVAL: Duration = Duration::from_secs(1);
+#[cfg(debug_assertions)]
+const DEBOUNCE_INTERVAL: Duration = Duration::from_secs(1);
-// #[cfg(not(debug_assertions))]
+#[cfg(not(debug_assertions))]
const DEBOUNCE_INTERVAL: Duration = Duration::from_secs(30);
impl Telemetry {
@@ -109,16 +109,16 @@ pub enum ClickhouseEvent {
},
}
-// #[cfg(debug_assertions)]
-// const MAX_QUEUE_LEN: usize = 1;
+#[cfg(debug_assertions)]
+const MAX_QUEUE_LEN: usize = 1;
-// #[cfg(not(debug_assertions))]
+#[cfg(not(debug_assertions))]
const MAX_QUEUE_LEN: usize = 10;
-// #[cfg(debug_assertions)]
-// const DEBOUNCE_INTERVAL: Duration = Duration::from_secs(1);
+#[cfg(debug_assertions)]
+const DEBOUNCE_INTERVAL: Duration = Duration::from_secs(1);
-// #[cfg(not(debug_assertions))]
+#[cfg(not(debug_assertions))]
const DEBOUNCE_INTERVAL: Duration = Duration::from_secs(30);
impl Telemetry {
@@ -8985,7 +8985,7 @@ impl Editor {
) {
}
- // #[cfg(not(any(test, feature = "test-support")))]
+ #[cfg(not(any(test, feature = "test-support")))]
fn report_editor_event(
&self,
operation: &'static str,
@@ -173,7 +173,7 @@ fn main() {
// })
// .detach();
- client.telemetry().start(installation_id, session_id, cx);
+ // client.telemetry().start(installation_id, session_id, cx);
let app_state = Arc::new(AppState {
languages,