This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit efe4978f6406d79bfefd48f88df892be5172d7af Author: Tomaz Muraus <to...@tomaz.me> AuthorDate: Mon Jul 31 16:02:06 2023 +0200 Update the comment. --- libcloud/compute/drivers/azure_arm.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libcloud/compute/drivers/azure_arm.py b/libcloud/compute/drivers/azure_arm.py index 678f6ae6d..1a7ee2327 100644 --- a/libcloud/compute/drivers/azure_arm.py +++ b/libcloud/compute/drivers/azure_arm.py @@ -66,6 +66,9 @@ VM_SIZE_API_VERSION = "2015-06-15" # this API is deprecated # If pagination code in the list_nodes() method has still not completed after this mount of # seconds, we will break early from while True loop to avoid infinite loop under edge conditions. +# Keep in mind that we want this timeout relatively high since each `_to_node()` method call which +# is called for each node can result in additional HTTP requests (to retrieve power state, nics, +# etc). LIST_NODES_PAGINATION_TIMEOUT = 300