AWS IOS DynamoDB Scan SDK - Scan thread works on the emulator, but not when debugging on the device

1

In my app I use a scan with DynamoDB that works perfectly in the emulator for all versions of iOS that xCode provides, however, when debugging on the device (iPhone 5c), it does not run the main thread.

[[[dynamoDBObjectMapper scan:[DDBTableRow class]
                  expression:scanExpression]
      continueWithExecutor:[BFExecutor mainThreadExecutor] withSuccessBlock:^id(BFTask *task) {
//Execução da Thread principal          
.
.
.
return nil;
  }] continueWithExecutor:[BFExecutor mainThreadExecutor] withBlock:^id(BFTask *task) {
      if (task.error) {
          NSLog(@"refreshList Error");
      }
      return nil;
  }];

Any ideas?

    
asked by anonymous 09.03.2015 / 22:14

1 answer

0

Resolved by updating the pod (AWSiOSSDKv2 2.0.17 (was 2.0.13)). More details:

    
18.03.2015 / 07:15