<div dir="ltr"><div>Hi guys,<br><br></div><div>I am using the python-novaclient api and creating a nova client using "client = Client(USERNAME, PASSWORD, PROJECT_ID, AUTH_URL)" My question is: what is the default timeout of the session the nova client instance set up with the compute endpoint?<br>
<br><br></div>From the man page of the novaclient.v1_1.client, I can see there is a "timeout=None" parameter in the __init__ method of the Client Object. Anyone know what is the this timeout setting for?<br><br>
<div><br>>>> help (novaclient.v1_1.client)<br><br> <br> class Client(__builtin__.object)<br> | Top-level object to access the OpenStack Compute API.<br> | <br> | Create an instance with your creds::<br>
| <br> | >>> client = Client(USERNAME, PASSWORD, PROJECT_ID, AUTH_URL)<br> | <br> | Then call methods on its managers::<br> | <br> | >>> client.servers.list()<br> | ...<br>
| >>> client.flavors.list()<br> | ...<br> | <br> | Methods defined here:<br> | <br> | __init__(self, username, api_key, project_id, auth_url=None, insecure=False, timeout=None, proxy_tenant_id=None, proxy_token=None, region_name=None, endpoint_type='publicURL', extensions=None, service_type='compute', service_name=None, volume_service_name=None, timings=False, bypass_url=None, os_cache=False, no_cache=True, http_log_debug=False, auth_system='keystone', auth_plugin=None, cacert=None, tenant_id=None)<br>
| # FIXME(jesse): project_id isn't required to authenticate<br><br><br></div><div>thanks <br></div><div>xin <br></div></div>