From 8c2fe61bbdeb0645c9302ac4d15c6a69e748ddd7 Mon Sep 17 00:00:00 2001 From: Steven Pitts <25968054+stevenpitts@users.noreply.github.com> Date: Mon, 10 Jul 2023 11:05:37 -0400 Subject: [PATCH] documentation: fix wait_for_endpoint docstring In #1204, the `wait_for_endpoint` `poll` default was changed from 5 to 30, but the docstring wasn't updated. Update the docstring to match. --- src/sagemaker/session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sagemaker/session.py b/src/sagemaker/session.py index 5b575b7914..3e734de8c1 100644 --- a/src/sagemaker/session.py +++ b/src/sagemaker/session.py @@ -4398,7 +4398,7 @@ def wait_for_endpoint(self, endpoint, poll=30): Args: endpoint (str): Name of the ``Endpoint`` to wait for. - poll (int): Polling interval in seconds (default: 5). + poll (int): Polling interval in seconds (default: 30). Raises: exceptions.CapacityError: If the endpoint creation job fails with CapacityError.