diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-28 12:35:00 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-28 12:35:00 +0200 |
commit | b0b3153532f44f4102e61c922e2947f27715a2fb (patch) | |
tree | 6a3b9044d451b0a93a3dadbaa3211dc452996607 /objective-c | |
parent | Fix for ICE-8169 - fixed error handling to prevent infinite loop of the thread (diff) | |
download | ice-b0b3153532f44f4102e61c922e2947f27715a2fb.tar.bz2 ice-b0b3153532f44f4102e61c922e2947f27715a2fb.tar.xz ice-b0b3153532f44f4102e61c922e2947f27715a2fb.zip |
Fixed ICE-8170 - speed up server side ACM to pervent failure
Diffstat (limited to 'objective-c')
-rw-r--r-- | objective-c/test/Ice/acm/AllTests.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/objective-c/test/Ice/acm/AllTests.m b/objective-c/test/Ice/acm/AllTests.m index 822dbfd1d20..fe58953bf1b 100644 --- a/objective-c/test/Ice/acm/AllTests.m +++ b/objective-c/test/Ice/acm/AllTests.m @@ -380,6 +380,12 @@ @end @implementation InvocationHeartbeatTest ++(id) testCase:(id<TestACMRemoteCommunicatorPrx>)com +{ + id tc = [super testCase:com]; + [tc setServerACM:1 close:-1 heartbeat:-1]; // Faster ACM to make sure we receive enough ACM heartbeats + return tc; +} +(NSString*) getName { return @"invocation heartbeat"; |