File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ export class Server {
190
190
191
191
if ( command === "start" ) {
192
192
event . properties . startup_time_ms = commandDuration ;
193
- event . properties . read_only_mode = this . userConfig . readOnly || false ;
193
+ event . properties . read_only_mode = this . userConfig . readOnly ? "true" : " false" ;
194
194
event . properties . disabled_tools = this . userConfig . disabledTools || [ ] ;
195
195
event . properties . confirmation_required_tools = this . userConfig . confirmationRequiredTools || [ ] ;
196
196
}
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export type ServerEventProperties = {
43
43
reason ?: string ;
44
44
startup_time_ms ?: number ;
45
45
runtime_duration_ms ?: number ;
46
- read_only_mode ?: boolean ;
46
+ read_only_mode ?: TelemetryBoolSet ;
47
47
disabled_tools ?: string [ ] ;
48
48
confirmation_required_tools ?: string [ ] ;
49
49
} ;
You can’t perform that action at this time.
0 commit comments