Skip to content
Snippets Groups Projects
Commit 19605a80 authored by cramakri's avatar cramakri
Browse files

MINOR : Make sure the minimum timeout for the ROOT call is 60s

SVN: 28076
parent 46558ce2
No related branches found
No related tags found
No related merge requests found
...@@ -165,7 +165,10 @@ NSString *const CISDOBIpadServiceErrorDomain = @"CISDOBIpadServiceErrorDomain"; ...@@ -165,7 +165,10 @@ NSString *const CISDOBIpadServiceErrorDomain = @"CISDOBIpadServiceErrorDomain";
- (CISDOBAsyncCall *)listRootLevelEntities; - (CISDOBAsyncCall *)listRootLevelEntities;
{ {
NSDictionary *parameters = [NSDictionary dictionaryWithObject: @"ROOT" forKey: @"requestKey"]; NSDictionary *parameters = [NSDictionary dictionaryWithObject: @"ROOT" forKey: @"requestKey"];
return [self createIpadServiceCallWithParameters: parameters]; CISDOBIpadServiceCall *serviceCall = [self createIpadServiceCallWithParameters: parameters];
// Make sure the timeout interval is at least 60s
if (serviceCall.timeoutInterval < 60.) serviceCall.timeoutInterval = 60.;
return serviceCall;
} }
- (NSArray *)convertToEntitiesPermIds:(NSArray *)permIds refcons:(NSArray *)refcons count:(NSUInteger)count - (NSArray *)convertToEntitiesPermIds:(NSArray *)permIds refcons:(NSArray *)refcons count:(NSUInteger)count
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment