Explorar el Código

test event to regular event

Alek Petuskey hace 9 meses
padre
commit
07f9844cb0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      reflex/utils/telemetry.py

+ 1 - 1
reflex/utils/telemetry.py

@@ -126,7 +126,7 @@ def compile_callback(f, start_time):
         # Force background compile errors to print eagerly
         f.result()
     finally:
-        send("test-compile", duration=time.perf_counter() - start_time)
+        send("compile", duration=time.perf_counter() - start_time)
 
 
 def _prepare_event(event: str, **kwargs) -> dict: