Skip to content

Commit a60bc66

Browse files
committed
chore: disable monitor by default in config schema
1 parent 3b81e83 commit a60bc66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_juicer/config/schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,10 +511,10 @@ class DJConfig(BaseModel):
511511
# tracer: tracing and insight mining
512512
# --------------------------------------------------------
513513
open_monitor: bool = Field(
514-
default=True,
514+
default=False,
515515
description=(
516516
"Whether to open the monitor to trace resource utilization for "
517-
"each OP during data processing. It's True in default."
517+
"each OP during data processing. It's False in default."
518518
),
519519
)
520520
open_tracer: bool = Field(

0 commit comments

Comments
 (0)