@@ -310,6 +310,8 @@ impl WorkerClient for WorkerClientBag {
310310 worker_version_capabilities : self . worker_version_capabilities ( ) ,
311311 deployment_options : self . deployment_options ( ) ,
312312 worker_instance_key : self . worker_instance_key . to_string ( ) ,
313+ poller_group_id : Default :: default ( ) ,
314+ worker_control_task_queue : Default :: default ( ) ,
313315 }
314316 . into_request ( ) ;
315317 request. extensions_mut ( ) . insert ( IsWorkerTaskLongPoll ) ;
@@ -348,6 +350,8 @@ impl WorkerClient for WorkerClientBag {
348350 worker_version_capabilities : self . worker_version_capabilities ( ) ,
349351 deployment_options : self . deployment_options ( ) ,
350352 worker_instance_key : self . worker_instance_key . to_string ( ) ,
353+ poller_group_id : Default :: default ( ) ,
354+ worker_control_task_queue : Default :: default ( ) ,
351355 }
352356 . into_request ( ) ;
353357 request. extensions_mut ( ) . insert ( IsWorkerTaskLongPoll ) ;
@@ -384,6 +388,7 @@ impl WorkerClient for WorkerClientBag {
384388 deployment_options : self . deployment_options ( ) ,
385389 worker_heartbeat : Vec :: new ( ) ,
386390 worker_instance_key : self . worker_instance_key . to_string ( ) ,
391+ poller_group_id : Default :: default ( ) ,
387392 }
388393 . into_request ( ) ;
389394 request. extensions_mut ( ) . insert ( IsWorkerTaskLongPoll ) ;
@@ -445,6 +450,8 @@ impl WorkerClient for WorkerClientBag {
445450 versioning_behavior : request. versioning_behavior . into ( ) ,
446451 deployment_options : self . deployment_options ( ) ,
447452 resource_id : Default :: default ( ) ,
453+ worker_instance_key : self . worker_instance_key . to_string ( ) ,
454+ worker_control_task_queue : Default :: default ( ) ,
448455 } ;
449456 Ok ( self
450457 . connection
@@ -495,6 +502,7 @@ impl WorkerClient for WorkerClientBag {
495502 identity : self . identity ( ) ,
496503 task_token : task_token. 0 ,
497504 response : Some ( response) ,
505+ poller_group_id : Default :: default ( ) ,
498506 }
499507 . into_request ( ) ,
500508 )
@@ -630,6 +638,7 @@ impl WorkerClient for WorkerClientBag {
630638 task_token : task_token. 0 ,
631639 failure,
632640 error,
641+ poller_group_id : Default :: default ( ) ,
633642 }
634643 . into_request ( ) ,
635644 )
@@ -691,6 +700,7 @@ impl WorkerClient for WorkerClientBag {
691700 namespace : self . namespace . clone ( ) ,
692701 failure,
693702 cause : cause. into ( ) ,
703+ poller_group_id : Default :: default ( ) ,
694704 }
695705 . into_request ( ) ,
696706 )
0 commit comments