From: Krzysztof Jackiewicz Date: Fri, 10 Jul 2015 10:31:40 +0000 (+0200) Subject: Extend asynchronous API socket timeout X-Git-Tag: accepted/tizen/mobile/20150908.231847~16 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fsecurity%2Fkey-manager.git;a=commitdiff_plain;h=d53051801c957b57900be153091a7396688d048f Extend asynchronous API socket timeout [Problem] Encryption and decryption may take much longer than 10s. In such case it fails because of timeout. [Solution] Extend timeout to 60s. [Verification] Run ckm-tests --group=CKM_ENCRYPTION_DECRYPTION Change-Id: I14c4084d7c44d310ab69649bd55e608f1b627204 --- diff --git a/src/manager/client-async/descriptor-set.h b/src/manager/client-async/descriptor-set.h index 7e166ba..7c70be1 100644 --- a/src/manager/client-async/descriptor-set.h +++ b/src/manager/client-async/descriptor-set.h @@ -80,7 +80,7 @@ public: * @throws Timeout exception in case of timeout * @throws InternalError in case of other error */ - void wait(int timeout_ms = 10000); + void wait(int timeout_ms = 60000); /* * Removes and closes all descriptors */