@@ -106,7 +106,11 @@ pub async fn pegboard_client(ctx: &mut WorkflowCtx, input: &Input) -> GlobalResu
106106 config,
107107 system,
108108 } ) ,
109- activity ( UpdateMetricsInput { client_id, flavor, clear : false } ) ,
109+ activity ( UpdateMetricsInput {
110+ client_id,
111+ flavor,
112+ clear : false ,
113+ } ) ,
110114 ) )
111115 . await ?;
112116 }
@@ -118,7 +122,11 @@ pub async fn pegboard_client(ctx: &mut WorkflowCtx, input: &Input) -> GlobalResu
118122 client_id,
119123 events : events. clone ( ) ,
120124 } ) ,
121- activity ( UpdateMetricsInput { client_id, flavor, clear : false } ) ,
125+ activity ( UpdateMetricsInput {
126+ client_id,
127+ flavor,
128+ clear : false ,
129+ } ) ,
122130 ) )
123131 . await ?;
124132
@@ -243,7 +251,12 @@ pub async fn pegboard_client(ctx: &mut WorkflowCtx, input: &Input) -> GlobalResu
243251 } )
244252 . await ?;
245253
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 ?;
247260
248261 let actors = ctx
249262 . activity ( FetchRemainingActorsInput {
@@ -675,7 +688,11 @@ pub async fn handle_commands(
675688 activity ( InsertCommandsInput {
676689 commands : raw_commands. clone ( ) ,
677690 } ) ,
678- activity ( UpdateMetricsInput { client_id, flavor, clear : false } ) ,
691+ activity ( UpdateMetricsInput {
692+ client_id,
693+ flavor,
694+ clear : false ,
695+ } ) ,
679696 ) )
680697 . await ?;
681698
0 commit comments