Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit e29bd00

Browse files
committed
GetWorkItemsRequest doesn't have concurrency attributes anymore
Signed-off-by: Albert Callarisa <albert@diagrid.io>
1 parent cdffd0a commit e29bd00

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

durabletask/worker.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -503,10 +503,7 @@ def should_invalidate_connection(rpc_error):
503503
try:
504504
assert current_stub is not None
505505
stub = current_stub
506-
get_work_items_request = pb.GetWorkItemsRequest(
507-
maxConcurrentOrchestrationWorkItems=self._concurrency_options.maximum_concurrent_orchestration_work_items,
508-
maxConcurrentActivityWorkItems=self._concurrency_options.maximum_concurrent_activity_work_items,
509-
)
506+
get_work_items_request = pb.GetWorkItemsRequest()
510507
try:
511508
self._response_stream = stub.GetWorkItems(get_work_items_request)
512509
self._logger.info(

0 commit comments

Comments
 (0)