@@ -106,7 +106,11 @@ pub async fn pegboard_client(ctx: &mut WorkflowCtx, input: &Input) -> GlobalResu
106
106
config,
107
107
system,
108
108
} ) ,
109
- activity ( UpdateMetricsInput { client_id, flavor, clear : false } ) ,
109
+ activity ( UpdateMetricsInput {
110
+ client_id,
111
+ flavor,
112
+ clear : false ,
113
+ } ) ,
110
114
) )
111
115
. await ?;
112
116
}
@@ -118,7 +122,11 @@ pub async fn pegboard_client(ctx: &mut WorkflowCtx, input: &Input) -> GlobalResu
118
122
client_id,
119
123
events : events. clone ( ) ,
120
124
} ) ,
121
- activity ( UpdateMetricsInput { client_id, flavor, clear : false } ) ,
125
+ activity ( UpdateMetricsInput {
126
+ client_id,
127
+ flavor,
128
+ clear : false ,
129
+ } ) ,
122
130
) )
123
131
. await ?;
124
132
@@ -243,7 +251,12 @@ pub async fn pegboard_client(ctx: &mut WorkflowCtx, input: &Input) -> GlobalResu
243
251
} )
244
252
. await ?;
245
253
246
- ctx. activity ( UpdateMetricsInput { client_id : input. client_id , flavor : input. flavor , clear : true } ) . await ?;
254
+ ctx. activity ( UpdateMetricsInput {
255
+ client_id : input. client_id ,
256
+ flavor : input. flavor ,
257
+ clear : true ,
258
+ } )
259
+ . await ?;
247
260
248
261
let actors = ctx
249
262
. activity ( FetchRemainingActorsInput {
@@ -675,7 +688,11 @@ pub async fn handle_commands(
675
688
activity ( InsertCommandsInput {
676
689
commands : raw_commands. clone ( ) ,
677
690
} ) ,
678
- activity ( UpdateMetricsInput { client_id, flavor, clear : false } ) ,
691
+ activity ( UpdateMetricsInput {
692
+ client_id,
693
+ flavor,
694
+ clear : false ,
695
+ } ) ,
679
696
) )
680
697
. await ?;
681
698
0 commit comments