Fix vsm_create_zone timeout 58/39358/1
authorDariusz Michaluk <d.michaluk@samsung.com>
Wed, 13 May 2015 11:56:12 +0000 (13:56 +0200)
committerDariusz Michaluk <d.michaluk@samsung.com>
Wed, 13 May 2015 11:56:12 +0000 (13:56 +0200)
[Feature]       Greater timeout for vsm_create_zone
[Cause]         Timeout was too small
[Solution]      N/A
[Verification]  Start vasum on odroid, create zone

Change-Id: Ic9015f7987c986267d47b5ce55d04a9749baf85c

client/host-ipc-connection.cpp

index 6aa87ec..b17c6cf 100644 (file)
@@ -174,7 +174,8 @@ void HostIPCConnection::callCreateZone(const api::CreateZoneIn& argIn)
 {
     mClient->callSync<api::CreateZoneIn, api::Void>(
         api::ipc::METHOD_CREATE_ZONE,
-        std::make_shared<api::CreateZoneIn>(argIn));
+        std::make_shared<api::CreateZoneIn>(argIn),
+        TIMEOUT_INFINITE);
 }
 
 void HostIPCConnection::callDestroyZone(const api::ZoneId& argIn)