diff --git a/dapr/clients/grpc/client.py b/dapr/clients/grpc/client.py index 8e56c188..ccf0ed72 100644 --- a/dapr/clients/grpc/client.py +++ b/dapr/clients/grpc/client.py @@ -500,9 +500,6 @@ def subscribe( topic (str): The name of the topic. metadata (Optional[MetadataTuple]): Additional metadata for the subscription. dead_letter_topic (Optional[str]): Name of the dead-letter topic. - timeout (Optional[int]): The time in seconds to wait for a message before returning None - If not set, the `next_message` method will block indefinitely - until a message is received. Returns: Subscription: The Subscription object managing the stream. @@ -528,9 +525,6 @@ def subscribe_with_handler( handler_fn (Callable[..., TopicEventResponse]): The function to call when a message is received. metadata (Optional[MetadataTuple]): Additional metadata for the subscription. dead_letter_topic (Optional[str]): Name of the dead-letter topic. - timeout (Optional[int]): The time in seconds to wait for a message before returning None - If not set, the `next_message` method will block indefinitely - until a message is received. """ subscription = self.subscribe(pubsub_name, topic, metadata, dead_letter_topic)