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 8d0de10937321bf4099c9970cd683fa8fbecb572
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Jul 31 17:00:54 2023 +0200

    Add comment which clarifies number of API requests performed by the
    method.
---
 libcloud/compute/drivers/azure_arm.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libcloud/compute/drivers/azure_arm.py 
b/libcloud/compute/drivers/azure_arm.py
index 1a7ee2327..224b831b1 100644
--- a/libcloud/compute/drivers/azure_arm.py
+++ b/libcloud/compute/drivers/azure_arm.py
@@ -463,8 +463,10 @@ class AzureNodeDriver(NodeDriver):
 
         :return:  list of node objects
         :rtype: ``list`` of :class:`.Node`
-        """
 
+        NOTE: With the default arguments, the function may result in M * (1 + 
(N * 3)) HTTP
+        requests where M is number of API pages and N is number of nodes 
returned per page.
+        """
         if ex_resource_group:
             action = (
                 "/subscriptions/%s/resourceGroups/%s/"

Reply via email to