Fix boto lib config
* boto lib configuration expects string parameters
Change-Id: I25098c7229adbaa2cfa025c9230ed7efbb12b5af
diff --git a/tempest/services/boto/__init__.py b/tempest/services/boto/__init__.py
index 58a2b37..3785396 100644
--- a/tempest/services/boto/__init__.py
+++ b/tempest/services/boto/__init__.py
@@ -35,8 +35,8 @@
auth_url=None, tenant_name=None,
*args, **kwargs):
- self.connection_timeout = config.boto.http_socket_timeout
- self.num_retries = config.boto.num_retries
+ self.connection_timeout = str(config.boto.http_socket_timeout)
+ self.num_retries = str(config.boto.num_retries)
self.build_timeout = config.boto.build_timeout
# We do not need the "path": "/token" part
if auth_url: