awslabs / awslabs/aws-mobile-appsync-sdk-android
IOException/SocketTimeoutException not propagated to GraphQLCall.Callback and Appsync goes into a long loop of retrying
- Dominant language
- Java
- Stars
- 106
- Forks
- 56
- PR merge metrics
- No merged PRs in 30d
Description
**Describe the bug**
I am setting my own `OKHttpClient` on `AWSAppSyncClient` and there is a particular Wifi which is giving socketTimeoutException. The RetryInterceptor on AppSync goes into an indefinite loop and `GraphQLCall.Callback.onFailure()` is never invoked.
**To Reproduce**
Steps to reproduce the behavior:
This is very difficult to reproduce outside a particular Wifi for me. I connect to this particular Wifi where a AppSync mutation calls gives a socket timeout. I have configured my own `OkHttpClient` on the `AWSAppSyncClient`. The `OkHttpClient` receives the exception but doesn't propagate to the actual mutation `GraphQLCall.Callback`. So in effect I get into a state for waiting for the GraphQL call to finish.
If I don't use my own `OKHttpClient`, then the retryInterceptor gets into the long loop of retrying the mutation. Again the same effect that I end up waiting for GraphQL call to finish for a few minutes which is not acceptable from user experience perspective. I have looked at many places to figure out if I am doing something wrong
This is how I configure the `AWSAppSyncClient`
```
return AWSAppSyncClient.builder().context(context)
.apiKey(new BasicAPIKeyAuthProvider(defaultAppSyncConfig.getApiKey()))
.region(Regions.fromName(defaultAppSyncConfig.getRegion())).serverUrl(defaultAppSyncConfig.getApiUrl())
.okHttpClient(okHttpClient)
.mutationQueueExecutionTimeout(connectTimeoutMillis).build();
```
**Expected behavior**
I expect the `GraphQLCall.Callback.onFailure` to be invoked.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Environment(please complete the following information):**
- AppSync SDK Version: 2.7.6
**Device Information (please complete the following information):**
- Device: Samsung Galaxy S9
- Android Version: 8
- Specific to simulators: No
**Additional context**
Logs with custom okhttpclient
```
2019-03-26 18:12:28.725 9247-9476/com.ba.mobile V/AppSyncOfflineMutationInterceptor: Thread:[6449]: processing Mutations
2019-03-26 18:12:28.726 9247-9476 V/QueueUpdateHandler: Thread:[6449]: Got message to take action on the mutation queue.
2019-03-26 18:12:28.726 9247-9476 V/QueueUpdateHandler: Thread:[6449]: Got message to process next mutation if one exists.
2019-03-26 18:12:28.730 9247-9476 V/AppSyncOfflineMutationManager: Thread:[6449]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:12:28.730 9247-9476 V/AppSyncOfflineMutationManager: Thread:[6449]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:12:29.059 9247-9441/com.ba.mobile V/AppSyncOfflineMutationInterceptor: Thread:[6430]: processing Mutations
2019-03-26 18:12:29.059 9247-9441 V/QueueUpdateHandler: Thread:[6430]: Got message to take action on the mutation queue.
2019-03-26 18:12:29.060 9247-9441 V/QueueUpdateHandler: Thread:[6430]: Got message to process next mutation if one exists.
2019-03-26 18:12:29.063 9247-9441 V/AppSyncOfflineMutationManager: Thread:[6430]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:12:29.064 9247-9441 V/AppSyncOfflineMutationManager: Thread:[6430]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:12:35.233 9247-9662/com.ba.mobile V/AppSyncOfflineMutationInterceptor: Thread:[6467]: processing Mutations
2019-03-26 18:12:35.233 9247-9662 V/QueueUpdateHandler: Thread:[6467]: Got message to take action on the mutation queue.
2019-03-26 18:12:38.728 9247-9476 V/AppSyncOfflineMutationInterceptor: Thread:[6449]: processing Mutations
2019-03-26 18:12:38.729 9247-9476 V/QueueUpdateHandler: Thread:[6449]: Got message to take action on the mutation queue.
2019-03-26 18:12:38.730 9247-9476 V/QueueUpdateHandler: Thread:[6449]: Got message to process next mutation if one exists.
2019-03-26 18:12:38.733 9247-9476 V/AppSyncOfflineMutationManager: Thread:[6449]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:12:38.734 9247-9476 V/AppSyncOfflineMutationManager: Thread:[6449]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:12:39.071 9247-9441/com.ba.mobile V/AppSyncOfflineMutationInterceptor: Thread:[6430]: processing Mutations
2019-03-26 18:12:39.071 9247-9441 V/QueueUpdateHandler: Thread:[6430]: Got message to take action on the mutation queue.
2019-03-26 18:12:39.072 9247-9441 V/QueueUpdateHandler: Thread:[6430]: Got message to process next mutation if one exists.
2019-03-26 18:12:39.075 9247-9441 V/AppSyncOfflineMutationManager: Thread:[6430]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:12:39.076 9247-9441 V/AppSyncOfflineMutationManager: Thread:[6430]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:12:45.244 9247-9662/com.ba.mobile V/AppSyncOfflineMutationInterceptor: Thread:[6467]: processing Mutations
2019-03-26 18:12:45.245 9247-9662 V/QueueUpdateHandler: Thread:[6467]: Got message to take action on the mutation queue.
2019-03-26 18:12:45.246 9247-9662 V/AppSyncOfflineMutationInterceptor: Dispose called
2019-03-26 18:12:45.249 9247-9662 V/AppSyncOfflineMutationInterceptor: Thread:[6467]: Dispose called for mutation
2019-03-26 18:12:45.250 9247-9662 V/AppSyncOfflineMutationManager: Thread:[6467]: Handling cancellation for mutation
2019-03-26 18:12:45.250 9247-9662 V/AppSyncOfflineMutationManager: Thread:[6467]: Mutation being canceled is the one currently in progress. Handling it
2019-03-26 18:12:45.250 9247-9662 V/PersistentOfflineMutationManager: Thread:[6467]:Removing mutation [2c95b8af-00ca-4147-83d8-b6624eebca60] from persistent store
**2019-03-26 18:12:45.262 9247-9444 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.io.IOException: Canceled]**
2019-03-26 18:12:45.268 9247-9662 V/QueueUpdateHandler: Thread:[6467]: Setting mutationInProgress as false.
2019-03-26 18:12:45.269 9247-9662 V/QueueUpdateHandler: Thread:[6467]: Got message to take action on the mutation queue.
2019-03-26 18:12:45.269 9247-9662 V/QueueUpdateHandler: Thread:[6467]: Got message to process next mutation if one exists.
2019-03-26 18:12:45.274 9247-9662 V/AppSyncOfflineMutationManager: Thread:[6467]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:12:45.274 9247-9662 V/AppSyncOfflineMutationManager: Thread:[6467]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
**2019-03-26 18:12:45.275 9247-9444/com.ba.mobile D/OkHttp: <-- HTTP FAILED: java.io.IOException: Canceled**
2019-03-26 18:12:48.738 9247-9476/com.ba.mobile V/AppSyncOfflineMutationInterceptor: Thread:[6449]: processing Mutations
2019-03-26 18:12:48.739 9247-9476 V/QueueUpdateHandler: Thread:[6449]: Got message to take action on the mutation queue.
2019-03-26 18:12:48.739 9247-9476 V/QueueUpdateHandler: Thread:[6449]: Got message to process next mutation if one exists.
2019-03-26 18:12:48.744 9247-9476 V/AppSyncOfflineMutationManager: Thread:[6449]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:12:48.744 9247-9476 V/AppSyncOfflineMutationManager: Thread:[6449]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:12:49.083 9247-9441 V/AppSyncOfflineMutationInterceptor: Thread:[6430]: processing Mutations
2019-03-26 18:12:49.084 9247-9441 V/QueueUpdateHandler: Thread:[6430]: Got message to take action on the mutation queue.
2019-03-26 18:12:49.084 9247-9441V/QueueUpdateHandler: Thread:[6430]: Got message to process next mutation if one exists.
2019-03-26 18:12:49.088 9247-9441 V/AppSyncOfflineMutationManager: Thread:[6430]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:12:49.088 9247-9441/ V/AppSyncOfflineMutationManager: Thread:[6430]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:12:55.254 9247-9662 V/AppSyncOfflineMutationInterceptor: Thread:[6467]: processing Mutations
2019-03-26 18:12:55.255 9247-9662 V/QueueUpdateHandler: Thread:[6467]: Got message to take action on the mutation queue.
2019-03-26 18:12:55.255 9247-9662 V/QueueUpdateHandler: Thread:[6467]: Got message to process next mutation if one exists.
```
Logs when custom `Okhttpclient` is not added to the `AWSAppSyncClient.builder()`. In this case the RetryInterceptor backs off after almost 5 mins. Is it not possible to configure this value somehow??
```
2019-03-26 18:31:47.044 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:31:47.044 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:31:47.044 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:31:47.044 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:31:47.044 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:31:47.044 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:31:47.045 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:31:47.045 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:31:47.046 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:31:47.046 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:31:47.047 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:31:47.048 10720-12403 V/InterceptorCallback: Thread:[6555]: onFetch()
**2019-03-26 18:31:47.050 10720-12404 D/RetryInterceptor: Retry Interceptor called**
2019-03-26 18:31:47.050 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:31:47.051 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:31:47.110 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:31:47.110 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:31:47.110 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:31:47.114 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:31:47.114 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:31:49.762 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:31:49.763 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:31:49.764 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:31:49.770 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:31:49.770 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:31:53.357 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:31:53.358 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:31:53.358 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:31:53.362 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:31:53.363 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:31:55.213 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:31:55.214 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:31:55.214 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:31:55.220 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:31:55.220 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:31:56.966 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:31:56.967 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:31:57.121 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:31:57.122 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:31:57.122 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:31:57.126 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:31:57.127 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
**2019-03-26 18:31:57.352 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]**
**2019-03-26 18:31:57.355 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call**
**2019-03-26 18:31:57.355 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call**
2019-03-26 18:31:57.355 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:31:57.355 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:31:59.775 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:31:59.776 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:31:59.776 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:31:59.789 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:31:59.790 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:03.369 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:32:03.370 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:32:03.370 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:32:03.376 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:03.376 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:05.223 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:32:05.224 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:32:05.224 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:32:05.230 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:05.230 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:06.978 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:32:06.979 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:32:06.980 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:32:06.985 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:06.985 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:32:06.986 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:32:06.986 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:32:06.986 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:32:06.987 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:32:06.999 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:32:07.008 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:32:07.016 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:32:07.019 10720-12402 V/InterceptorCallback: Thread:[6554]: onFetch()
2019-03-26 18:32:07.030 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:32:07.030 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:32:07.032 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:32:07.132 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:32:07.133 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:32:07.134 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:32:07.138 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:07.139 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:09.787 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:32:09.787 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:32:09.788 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:32:09.792 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:09.792 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:13.378 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:32:13.379 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:32:13.379 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:32:13.383 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:13.383 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:15.234 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:32:15.235 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:32:15.235 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:32:15.241 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:15.242 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:16.982 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:32:16.983 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
**2019-03-26 18:32:17.057 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]**
**2019-03-26 18:32:17.058 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call**
**2019-03-26 18:32:17.058 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call**
2019-03-26 18:32:17.058 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:32:17.059 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:32:17.144 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:32:17.144 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:32:17.145 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:32:17.148 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:17.149 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:19.798 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:32:19.799 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:32:19.799 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:32:19.805 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:19.805 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:23.389 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:32:23.390 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:32:23.390 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:32:23.395 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:23.395 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:25.245 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:32:25.246 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:32:25.246 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:32:25.252 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:25.253 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:26.993 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:32:26.994 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:32:26.994 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:32:27.001 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:27.001 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:32:27.002 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:32:27.002 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:32:27.002 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:32:27.003 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:32:27.017 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:32:27.026 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:32:27.034 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:32:27.038 10720-12403 V/InterceptorCallback: Thread:[6555]: onFetch()
2019-03-26 18:32:27.052 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:32:27.052 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:32:27.055 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:32:27.156 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:32:27.157 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:32:27.157 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:32:27.162 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:27.162 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:29.806 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:32:29.807 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:32:29.807 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:32:29.811 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:29.811 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:33.400 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:32:33.401 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:32:33.402 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:32:33.409 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:33.409 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:35.256 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:32:35.257 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:32:35.258 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:32:35.262 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:35.262 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:37.005 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:32:37.006 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
**2019-03-26 18:32:37.076 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]**
**2019-03-26 18:32:37.076 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call**
2019-03-26 18:32:37.077 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:32:37.077 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:32:37.077 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:32:37.158 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:32:37.159 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:32:37.159 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:32:37.163 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:37.163 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:39.817 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:32:39.818 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:32:39.818 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:32:39.824 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:39.824 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:43.404 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:32:43.405 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:32:43.405 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:32:43.411 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:43.411 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:45.266 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:32:45.267 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:32:45.267 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:32:45.271 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:45.272 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:47.016 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:32:47.018 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:32:47.018 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:32:47.022 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:47.023 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:32:47.023 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:32:47.023 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:32:47.024 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:32:47.024 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:32:47.035 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:32:47.047 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:32:47.055 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:32:47.058 10720-12402 V/InterceptorCallback: Thread:[6554]: onFetch()
2019-03-26 18:32:47.067 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:32:47.068 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:32:47.071 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:32:47.170 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:32:47.170 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:32:47.170 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:32:47.175 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:47.176 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:49.828 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:32:49.829 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:32:49.830 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:32:49.834 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:49.834 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:53.410 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:32:53.410 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:32:53.411 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:32:53.415 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:53.415 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:55.278 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:32:55.278 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:32:55.279 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:32:55.284 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:55.284 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:57.028 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:32:57.028 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:32:57.093 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:32:57.094 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:32:57.095 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:32:57.095 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:32:57.095 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:32:57.181 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:32:57.182 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:32:57.182 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:32:57.186 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:57.186 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:32:59.839 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:32:59.840 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:32:59.840 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:32:59.845 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:32:59.846 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:03.421 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:33:03.422 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:33:03.422 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:33:03.426 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:03.427 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:05.290 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:33:05.290 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:33:05.291 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:33:05.296 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:05.296 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:07.030 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:33:07.031 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:33:07.031 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:33:07.035 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:07.035 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:33:07.035 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:33:07.036 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:33:07.036 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:33:07.037 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:33:07.050 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:33:07.061 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:33:07.069 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:33:07.071 10720-12403 V/InterceptorCallback: Thread:[6555]: onFetch()
2019-03-26 18:33:07.080 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:33:07.080 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:33:07.082 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:33:07.192 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:33:07.193 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:33:07.194 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:33:07.198 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:07.198 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:09.851 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:33:09.851 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:33:09.852 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:33:09.858 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:09.858 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:13.430 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:33:13.430 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:33:13.430 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:33:13.434 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:13.434 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:15.302 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:33:15.302 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:33:15.303 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:33:15.307 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:15.308 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:17.038 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:33:17.039 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:33:17.104 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:33:17.105 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:33:17.105 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:33:17.106 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:33:17.106 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:33:17.204 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:33:17.204 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:33:17.205 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:33:17.208 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:17.209 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:19.862 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:33:19.863 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:33:19.863 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:33:19.868 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:19.868 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:23.442 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:33:23.442 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:33:23.442 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:33:23.447 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:23.447 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:25.310 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:33:25.311 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:33:25.311 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:33:25.314 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:25.315 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:27.049 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:33:27.050 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:33:27.050 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:33:27.054 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:27.054 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:33:27.054 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:33:27.055 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:33:27.055 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:33:27.056 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:33:27.067 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:33:27.079 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:33:27.088 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:33:27.091 10720-12402 V/InterceptorCallback: Thread:[6554]: onFetch()
2019-03-26 18:33:27.106 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:33:27.106 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:33:27.109 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:33:27.216 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:33:27.216 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:33:27.217 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:33:27.222 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:27.222 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:29.872 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:33:29.873 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:33:29.873 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:33:29.877 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:29.878 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:33.453 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:33:33.454 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:33:33.454 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:33:33.457 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:33.458 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:35.321 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:33:35.322 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:33:35.322 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:33:35.327 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:35.328 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:37.060 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:33:37.061 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:33:37.133 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:33:37.134 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:33:37.135 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:33:37.135 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:33:37.135 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:33:37.226 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:33:37.227 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:33:37.227 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:33:37.231 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:37.231 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:39.882 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:33:39.883 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:33:39.883 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:33:39.887 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:39.887 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:43.458 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:33:43.459 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:33:43.460 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:33:43.464 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:43.465 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:45.332 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:33:45.333 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:33:45.333 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:33:45.338 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:45.338 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:47.072 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:33:47.072 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:33:47.073 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:33:47.078 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:47.078 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:33:47.078 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:33:47.079 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:33:47.079 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:33:47.080 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:33:47.091 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:33:47.100 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:33:47.108 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:33:47.111 10720-12403 V/InterceptorCallback: Thread:[6555]: onFetch()
2019-03-26 18:33:47.122 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:33:47.122 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:33:47.125 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:33:47.238 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:33:47.239 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:33:47.239 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:33:47.244 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:47.244 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:49.894 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:33:49.894 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:33:49.894 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:33:49.898 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:49.898 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:53.471 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:33:53.471 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:33:53.472 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:33:53.476 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:53.476 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:55.343 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:33:55.344 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:33:55.344 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:33:55.349 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:55.349 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:57.084 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:33:57.084 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:33:57.147 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:33:57.148 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:33:57.148 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:33:57.148 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:33:57.148 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:33:57.250 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:33:57.250 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:33:57.250 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:33:57.254 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:57.254 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:33:59.903 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:33:59.903 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:33:59.904 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:33:59.908 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:33:59.908 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:03.483 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:34:03.483 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:34:03.483 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:34:03.488 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:03.488 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:05.354 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:34:05.355 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:34:05.355 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:34:05.360 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:05.360 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:07.095 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:34:07.096 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:34:07.096 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:34:07.100 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:07.100 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:34:07.100 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:34:07.100 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:34:07.100 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:34:07.101 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:34:07.112 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:34:07.118 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:34:07.123 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:34:07.125 10720-12402 V/InterceptorCallback: Thread:[6554]: onFetch()
2019-03-26 18:34:07.131 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:34:07.132 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:34:07.134 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:34:07.258 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:34:07.259 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:34:07.259 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:34:07.262 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:07.263 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:09.914 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:34:09.914 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:34:09.914 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:34:09.918 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:09.919 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:13.495 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:34:13.495 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:34:13.495 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:34:13.500 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:13.500 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:15.366 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:34:15.366 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:34:15.366 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:34:15.372 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:15.372 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:17.096 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:34:17.097 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:34:17.151 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:34:17.152 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:34:17.152 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:34:17.152 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:34:17.152 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:34:17.269 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:34:17.269 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:34:17.270 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:34:17.273 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:17.274 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:19.925 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:34:19.926 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:34:19.926 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:34:19.930 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:19.931 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:23.506 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:34:23.506 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:34:23.506 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:34:23.510 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:23.510 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:25.378 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:34:25.378 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:34:25.378 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:34:25.382 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:25.383 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:27.108 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:34:27.109 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:34:27.110 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:34:27.114 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:27.115 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:34:27.115 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:34:27.115 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:34:27.116 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:34:27.116 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:34:27.127 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:34:27.137 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:34:27.144 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:34:27.147 10720-12403 V/InterceptorCallback: Thread:[6555]: onFetch()
2019-03-26 18:34:27.159 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:34:27.160 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:34:27.163 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:34:27.281 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:34:27.282 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:34:27.282 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:34:27.286 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:27.286 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:29.930 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:34:29.930 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:34:29.931 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:34:29.936 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:29.937 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:33.506 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:34:33.507 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:34:33.507 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:34:33.511 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:33.511 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:35.390 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:34:35.391 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:34:35.391 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:34:35.397 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:35.397 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:37.119 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:34:37.119 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:34:37.192 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:34:37.192 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:34:37.193 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:34:37.193 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:34:37.193 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:34:37.282 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:34:37.283 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:34:37.283 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:34:37.287 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:37.287 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:39.938 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:34:39.939 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:34:39.939 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:34:39.944 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:39.944 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:43.518 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:34:43.519 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:34:43.519 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:34:43.522 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:43.522 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:45.402 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:34:45.402 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:34:45.402 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:34:45.407 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:45.407 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:47.130 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:34:47.131 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:34:47.131 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:34:47.135 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:47.135 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:34:47.135 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:34:47.136 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:34:47.136 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:34:47.136 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:34:47.150 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:34:47.159 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:34:47.167 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:34:47.170 10720-12402 V/InterceptorCallback: Thread:[6554]: onFetch()
2019-03-26 18:34:47.179 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:34:47.179 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:34:47.182 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:34:47.290 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:34:47.291 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:34:47.291 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:34:47.295 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:47.295 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:49.949 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:34:49.950 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:34:49.950 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:34:49.954 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:49.954 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:53.526 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:34:53.527 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:34:53.527 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:34:53.531 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:53.531 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:55.412 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:34:55.412 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:34:55.413 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:34:55.417 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:55.418 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:57.142 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:34:57.142 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:34:57.204 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:34:57.206 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:34:57.206 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:34:57.206 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:34:57.206 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:34:57.303 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:34:57.303 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:34:57.304 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:34:57.308 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:57.308 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:34:59.960 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:34:59.961 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:34:59.961 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:34:59.969 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:34:59.969 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:03.538 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:35:03.539 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:35:03.539 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:35:03.543 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:03.543 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:05.424 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:35:05.424 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:35:05.424 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:35:05.430 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:05.430 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:07.153 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:35:07.154 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:35:07.154 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:35:07.158 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:07.158 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:35:07.159 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:35:07.159 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:35:07.159 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:35:07.160 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:35:07.172 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:35:07.181 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:35:07.188 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:35:07.192 10720-12403 V/InterceptorCallback: Thread:[6555]: onFetch()
2019-03-26 18:35:07.203 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:35:07.203 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:35:07.208 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:35:07.314 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:35:07.315 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:35:07.315 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:35:07.322 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:07.322 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:09.971 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:35:09.972 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:35:09.972 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:35:09.976 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:09.977 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:13.554 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:35:13.554 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:35:13.555 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:35:13.559 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:13.559 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:15.435 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:35:15.436 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:35:15.436 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:35:15.442 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:15.442 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:17.164 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:35:17.165 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:35:17.232 10720-12404 W/RetryInterceptor: Encountered IO Exception making HTTP call [java.net.SocketTimeoutException: timeout]
2019-03-26 18:35:17.233 10720-12404 V/InterceptorCallback: Thread:[6556]: onFailure() Failed to execute http call
2019-03-26 18:35:17.233 10720-12404 V/InterceptorCallback: Thread:[6556]: Network Exception Failed to execute http call
2019-03-26 18:35:17.233 10720-12404 V/InterceptorCallback: Thread:[6556]: Will retry mutation when back on network
2019-03-26 18:35:17.239 10720-12404 V/QueueUpdateHandler: Thread:[6556]: Setting mutationInProgress as false.
2019-03-26 18:35:17.325 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:35:17.326 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:35:17.326 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:35:17.330 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:17.330 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:19.983 10720-12001 V/AppSyncOfflineMutationInterceptor: Thread:[6522]: processing Mutations
2019-03-26 18:35:19.984 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to take action on the mutation queue.
2019-03-26 18:35:19.984 10720-12001 V/QueueUpdateHandler: Thread:[6522]: Got message to process next mutation if one exists.
2019-03-26 18:35:19.990 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:19.990 10720-12001 V/AppSyncOfflineMutationManager: Thread:[6522]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:23.566 10720-12021 V/AppSyncOfflineMutationInterceptor: Thread:[6532]: processing Mutations
2019-03-26 18:35:23.566 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to take action on the mutation queue.
2019-03-26 18:35:23.567 10720-12021 V/QueueUpdateHandler: Thread:[6532]: Got message to process next mutation if one exists.
2019-03-26 18:35:23.571 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:23.571 10720-12021 V/AppSyncOfflineMutationManager: Thread:[6532]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:25.446 10720-11798 V/AppSyncOfflineMutationInterceptor: Thread:[6504]: processing Mutations
2019-03-26 18:35:25.447 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to take action on the mutation queue.
2019-03-26 18:35:25.447 10720-11798 V/QueueUpdateHandler: Thread:[6504]: Got message to process next mutation if one exists.
2019-03-26 18:35:25.451 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:25.452 10720-11798 V/AppSyncOfflineMutationManager: Thread:[6504]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:27.175 10720-12401 V/AppSyncOfflineMutationInterceptor: Thread:[6553]: processing Mutations
2019-03-26 18:35:27.176 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to take action on the mutation queue.
2019-03-26 18:35:27.176 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Got message to process next mutation if one exists.
2019-03-26 18:35:27.180 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:27.181 10720-12401 V/QueueUpdateHandler: Thread:[6553]: Setting mutationInProgress as true.
2019-03-26 18:35:27.181 10720-12401 V/AppSyncOfflineMutationManager: Thread:[6553]: Processing next from in Memory queue
2019-03-26 18:35:27.181 10720-12401 V/InMemoryOfflineMutationManager: Thread:[6553]:Executing mutation [6b4cccdb-3c07-4d0c-a54f-6dba31fccb1b]
2019-03-26 18:35:27.182 10720-12401 V/InMemoryOfflineMutationObject: Thread:[6553]: Executing mutation by proceeding with the chain.
2019-03-26 18:35:27.182 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [orderId] of type [String]
2019-03-26 18:35:27.191 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [lastName] of type [String]
2019-03-26 18:35:27.201 10720-12401 V/S3ObjectManagerImplementation: Thread:[6553]: Looking at Key [accessToken] of type [String]
2019-03-26 18:35:27.208 10720-12401 V/AppSyncComplexObjectsInterceptor: Thread:[6553]: No s3 Objects found. Proceeding with the chain
2019-03-26 18:35:27.211 10720-12402 V/InterceptorCallback: Thread:[6554]: onFetch()
2019-03-26 18:35:27.222 10720-12404 D/RetryInterceptor: Retry Interceptor called
2019-03-26 18:35:27.223 10720-12404 D/AppSyncSigV4SignerInterceptor: Signer Interceptor called
2019-03-26 18:35:27.226 10720-12404 D/AppSyncSigV4SignerInterceptor: Subscriber ID is b4525fe4-ef07-485b-a6e5-e14671345f6c
2019-03-26 18:35:27.336 10720-11931 V/AppSyncOfflineMutationInterceptor: Thread:[6513]: processing Mutations
2019-03-26 18:35:27.337 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to take action on the mutation queue.
2019-03-26 18:35:27.338 10720-11931 V/QueueUpdateHandler: Thread:[6513]: Got message to process next mutation if one exists.
2019-03-26 18:35:27.341 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]:Persistent mutations queue is EMPTY!. Will check inMemory Queue next
2019-03-26 18:35:27.342 10720-11931 V/AppSyncOfflineMutationManager: Thread:[6513]: In Memory mutations queue was EMPTY!. Nothing to process, exiting
2019-03-26 18:35:28.936 10720-12404 I/RetryInterceptor: Returning network response: success
2019-03-26 18:35:28.993 10720-12404 V/InterceptorCallback: Thread:[6556]: onResponse()
```
Contributor guide
Research direction
Start by reading RetryInterceptor and the AppSyncOfflineMutationInterceptor mutation-queue path used by AWSAppSyncClient.builder().okHttpClient(...), then trace how IOException and SocketTimeoutException move toward GraphQLCall.Callback. Done means a failed mutation invokes onFailure and retrying does not loop indefinitely; the issue also raises whether the retry backoff can be configured.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- android, graphql, java
- Domain
- api, mobile
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 30/100