Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unauthorized error when Data-specific Authorization with AppSync (Datastore/GraphQL) #4746

Open
3 of 14 tasks
jmartins-sh opened this issue Apr 18, 2024 · 6 comments
Open
3 of 14 tasks
Labels
GraphQL API Issues related to the API (GraphQL) Category Investigating Issues that are assigned and are being looked into question A question about the Amplify Flutter libraries

Comments

@jmartins-sh
Copy link

jmartins-sh commented Apr 18, 2024

Description

Hi! I'm developing an app where users should only access their own data. I implemented the @auth notation in my GraphQL schema based on the documentation. However, I'm encountering an unauthorized error in my Flutter app.

Here's a breakdown of the issue:

  • A Cognito Lambda trigger creates users upon signup.
  • The user is successfully created in the database.
  • The user can sign in and authenticate.
  • But fetching the authenticated user's data from the datastore (Flutter side) results in an unauthorized error.

Oh, on flutter side I've configured Datastore's Plugins to use MultiAuth (screenshot below)

I appreciate any help! :)

Here is the cli-inputs.json, might be useful.

{
  "version": 1,
  "serviceConfiguration": {
    "apiName": "awesomeproject",
    "serviceName": "AppSync",
    "defaultAuthType": {
      "mode": "AMAZON_COGNITO_USER_POOLS",
      "cognitoUserPoolId": "authawesomeprojectBlablablabla"
    },
    "conflictResolution": {
      "defaultResolutionStrategy": {
        "type": "AUTOMERGE"
      }
    },
    "additionalAuthTypes": [
      {
        "mode": "API_KEY",
        "expirationTime": 7,
        "apiKeyExpirationDate": "2024-04-25T15:14:53.887Z",
        "keyDescription": "dev"
      },
      {
        "mode": "AWS_IAM"
      }
    ]
  }
}
Logs

I/amplify:aws-datastore( 5758): DataStore plugin initialized. I/amplify:aws-datastore( 5758): Orchestrator transitioning from STOPPED to SYNC_VIA_API I/amplify:aws-datastore( 5758): Starting to observe local storage changes. D/EGL_emulation( 5758): app_time_stats: avg=7.95ms min=1.27ms max=60.63ms count=56 I/amplify:aws-datastore( 5758): Now observing local storage. Local changes will be enqueued to mutation outbox. I/amplify:aws-datastore( 5758): Setting currentState to LOCAL_ONLY I/amplify:aws-datastore( 5758): Setting currentState to SYNC_VIA_API I/amplify:aws-datastore( 5758): Orchestrator lock released. I/amplify:aws-datastore( 5758): Starting API synchronization mode. I/amplify:flutter:datastore( 5758): Established a new stream form flutter com.amplifyframework.datastore.storage.sqlite.SQLiteStorageAdapter$$ExternalSyntheticLambda13@a4376ad I/amplify:aws-datastore( 5758): Starting processing subscription events. I/amplify:aws-datastore( 5758): Orchestrator lock acquired. I/amplify:aws-datastore( 5758): DataStore plugin initialized. I/amplify:aws-datastore( 5758): Orchestrator lock released. I/ker.awsome-project( 5758): Background concurrent copying GC freed 77415(3716KB) AllocSpace objects, 6(312KB) LOS objects, 49% free, 7230KB/14MB, paused 194us,43us total 155.783ms D/TrafficStats( 5758): tagSocket(137) with statsTag=0xffffffff, statsUid=-1 D/EGL_emulation( 5758): app_time_stats: avg=6.25ms min=1.83ms max=34.03ms count=54 /ker.awsome-project( 5758): Long monitor contention with owner pool-7-thread-3 (6037) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=3 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.108s W/amplify:aws-datastore( 5758): Unauthorized failure:ON_DELETE User W/ker.awsome-project( 5758): Long monitor contention with owner pool-7-thread-3 (6037) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=4 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.321s /amplify:aws-datastore( 5758): Unauthorized failure:ON_UPDATE User W/ker.awsome-project( 5758): Long monitor contention with owner pool-7-thread-3 (6037) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=6 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.697s W/amplify:aws-datastore( 5758): Unauthorized failure:ON_CREATE User D/EGL_emulation( 5758): app_time_stats: avg=6.07ms min=2.30ms max=22.02ms count=53 W/ker.awsome-project( 5758): Long monitor contention with owner pool-7-thread-3 (6037) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=7 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.938s I/amplify:aws-datastore( 5758): Started subscription processor for models: [User] of types [ON_CREATE, ON_UPDATE, ON_DELETE]. D/TrafficStats( 5758): tagSocket(149) with statsTag=0xffffffff, statsUid=-1 D/EGL_emulation( 5758): app_time_stats: avg=3.87ms min=1.31ms max=22.84ms count=57 D/CompatibilityChangeReporter( 5758): Compat change id reported: 263076149; UID 10191; state: DISABLED I/amplify:aws-datastore( 5758): Successfully sync'd down model state from cloud. W/amplify:aws-datastore( 5758): Initial cloud sync failed for User. W/amplify:aws-datastore( 5758): IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 5758): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 5758): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 5758): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 5758): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 5758): at java.lang.Thread.run(Thread.java:1012) E/amplify:flutter:datastore( 5758): DataStoreException{message=Initial cloud sync failed for User., cause=IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=Check your internet connection.} E/amplify:aws-datastore( 5758): Failure encountered while attempting to start API sync. E/amplify:aws-datastore( 5758): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at E/amplify:aws-datastore( 5758): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that E/amplify:aws-datastore( 5758): match your scenario, and file an issue with the details of the bug if there isn't.} E/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) E/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) E/amplify:aws-datastore( 5758): at java.util.concurrent.FutureTask.run(FutureTask.java:264) E/amplify:aws-datastore( 5758): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) E/amplify:aws-datastore( 5758): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) E/amplify:aws-datastore( 5758): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) E/amplify:aws-datastore( 5758): at java.lang.Thread.run(Thread.java:1012) E/amplify:aws-datastore( 5758): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) E/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) E/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) E/amplify:aws-datastore( 5758): ... 18 more E/amplify:aws-datastore( 5758): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) E/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) E/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) E/amplify:aws-datastore( 5758): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) E/amplify:aws-datastore( 5758): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) E/amplify:aws-datastore( 5758): ... 3 more W/amplify:aws-datastore( 5758): API sync failed - transitioning to LOCAL_ONLY. W/amplify:aws-datastore( 5758): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at W/amplify:aws-datastore( 5758): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that W/amplify:aws-datastore( 5758): match your scenario, and file an issue with the details of the bug if there isn't.} W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) W/amplify:aws-datastore( 5758): at java.util.concurrent.FutureTask.run(FutureTask.java:264) W/amplify:aws-datastore( 5758): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) W/amplify:aws-datastore( 5758): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 5758): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 5758): at java.lang.Thread.run(Thread.java:1012) W/amplify:aws-datastore( 5758): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) W/amplify:aws-datastore( 5758): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) W/amplify:aws-datastore( 5758): ... 18 more W/amplify:aws-datastore( 5758): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 5758): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 5758): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 5758): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 5758): ... 3 more I/amplify:aws-datastore( 5758): Orchestrator transitioning from SYNC_VIA_API to LOCAL_ONLY I/amplify:aws-datastore( 5758): Stopping subscription processor. I/amplify:aws-datastore( 5758): Stopped subscription processor. I/amplify:aws-datastore( 5758): Setting currentState to LOCAL_ONLY D/EGL_emulation( 5758): app_time_stats: avg=5.97ms min=1.33ms max=22.17ms count=53 W/ker.awsome-project( 5758): Long monitor contention with owner pool-7-thread-6 (6038) at void com.amplifyframework.api.aws.SubscriptionEndpoint.releaseSubscription(java.lang.String)(SubscriptionEndpoint.java:315) waiters=1 in void com.amplifyframework.api.aws.SubscriptionEndpoint.releaseSubscription(java.lang.String) for 408ms

Categories

  • Analytics
  • API (REST)
  • API (GraphQL)
  • Auth
  • Authenticator
  • DataStore
  • Notifications (Push)
  • Storage

Steps to Reproduce

.

Screenshots

image

Platforms

  • iOS
  • Android
  • Web
  • macOS
  • Windows
  • Linux

Flutter Version

3.19.5

Amplify Flutter Version

1.7.0

Deployment Method

Amplify CLI

Schema

type User
  @model
  @auth(
    rules: [
      { allow: private, provider: iam }
      { allow: owner, ownerField: "recordOwner" }
    ]
  ) {
  userId: ID! @primaryKey
  recordOwner: String 
  name: String!
  email: String!
  about: String
}
@NikaHsn
Copy link
Contributor

NikaHsn commented Apr 18, 2024

Thanks for taking the time to raise this issue. While we investigate, could you please provide answers to the following questions:

  • Can you confirm if recordOwner is populated corectly when creating or updating records?
  • Can you share the code for fetching the user data?

@NikaHsn NikaHsn added GraphQL API Issues related to the API (GraphQL) Category pending-response Issue is pending response from the issue requestor pending-triage This issue is in the backlog of issues to triage labels Apr 18, 2024
@szymondobrzanski
Copy link

Hello,
I have the same problem, it seems new as I wasn't experiencing it day ago. After user authenticates successfully and DataStore sync starts I'm getting unauthorized error mentioned in issue. Here are logs (example for one model):

ConnectionProviderError.unauthorized
[IncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: failure(DataStoreError: Subscription item event failed with error: Unauthorized
Caused by:
APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized)

[IncomingAsyncSubscriptionEventToAnyModelMapper] connectionState now connected
[AWSInitialSyncOrchestrator] Beginning initial sync
[InitialSyncOperation] Beginning sync for AcceptedNewsletterDb

[tcp] tcp_input [C43.1.1:2] flags=[R.] seq=2283493766, ack=3714832984, win=1468 state=ESTABLISHED rcv_nxt=2283493766, snd_una=3714832984
[RemoteSyncEngine] One or more errors occurred syncing models. See below for detailed error description.

DataStoreError: An error occurred syncing AcceptedNewsletterDb
Caused by:
DataStoreError: The HTTP response status code is [401].
Recovery suggestion: The metadata associated with the response is contained in the HTTPURLResponse.
For more information on HTTP status codes, take a look at
https://en.wikipedia.org/wiki/List_of_HTTP_status_codes

@jmartins-sh
Copy link
Author

jmartins-sh commented Apr 19, 2024

Thanks for taking the time to raise this issue. While we investigate, could you please provide answers to the following questions:

  • Can you confirm if recordOwner is populated corectly when creating or updating records?
  • Can you share the code for fetching the user data?

Hey @NikaHsn, thanks for the reply, sure here it is:

The field recordOwner is populated correctly, as the image below shows (right now I am using the same value as userId):
image

The code responsable for the fetch:
image

I've noticed that the flutter side can't fetch the data, but if I use the aws console on AppSync service, I can run queries using the cognito pool with the user and only his data are shown, so It is working on the backend, the problem seems to be on flutter side.

Screenshot from AppSync service in AWS Console, using the graphql api with cognit pool authentication:

image

Let me know if you need anything else @NikaHsn!

I appreciate your help. :)

@NikaHsn
Copy link
Contributor

NikaHsn commented Apr 19, 2024

thanks @joaoantoniomartinsfilho. could you please provide the following additional information:

  • the full error message
  • have you observed this issue on iOS as well?
  • try using Amplify.DataStore.query to fetch the data and whether the operation was successful or not.
  • Similarly, try using Amplify.DataStore.save to store user data and if subsequent data retrieval is successful or not

@szymondobrzanski I recommend initiating a new issue and completing the issue template.

@jmartins-sh
Copy link
Author

Hey @NikaHsn, how's it going?

The additional information as request:

There are multiple error messages, so I added the full log, from building the app until my last interact after the error:

Launching lib/main.dart on sdk gphone64 x86 64 in debug mode... Building with Flutter multidex support enabled. ✓ Built build/app/outputs/flutter-apk/app-debug.apk. D/FlutterGeolocator( 5456): Attaching Geolocator to activity D/FlutterGeolocator( 5456): Creating service. D/FlutterGeolocator( 5456): Binding to location service. D/FlutterGeolocator( 5456): Geolocator foreground service connected D/FlutterGeolocator( 5456): Initializing Geolocator services D/FlutterGeolocator( 5456): Flutter engine connected. Connected engine count 1 Connecting to VM Service at ws://127.0.0.1:40301/pJoBkejJQME=/ws W/amplify:aws-datastore( 5456): The doSyncRetry configuration will be deprecated in a future version. Please discontinue use of this API. W/amplify:aws-datastore( 5456): Disabling sync retries will be deprecated in a future version. I/amplify:flutter:datastore( 5456): Added Auth plugin I/amplify:flutter:datastore( 5456): Added API plugin D/CompatibilityChangeReporter( 5456): Compat change id reported: 247079863; UID 10191; state: DISABLED I/amplify:aws-datastore( 5456): DataStore plugin initialized. I/amplify:flutter:datastore( 5456): Unhandled DataStoreHubEvent: SUCCEEDED I/amplify:flutter:datastore( 5456): com.amplifyframework.core.category.CategoryInitializationResult@ca650ad I/flutter ( 5456): 2024-04-22 15:19:26.290937 - App - INFO: Application started D/EGL_emulation( 5456): app_time_stats: avg=31.81ms min=8.55ms max=388.63ms count=43 D/ProfileInstaller( 5456): Installing profile for joao.awsome.awsome I/ImeTracker( 5456): joao.awsome.awsome:dda94465: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F....ID 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/EGL_emulation( 5456): app_time_stats: avg=3545.80ms min=157.87ms max=6933.74ms count=2 I/AssistStructure( 5456): Flattened final assist data: 408 bytes, containing 1 windows, 3 views D/EGL_emulation( 5456): app_time_stats: avg=258.40ms min=1.11ms max=5004.39ms count=22 D/InsetsController( 5456): show(ime(), fromIme=true) I/flutter ( 5456): 2024-04-22 15:19:34.654038 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:34.759904 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:34.793186 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:34.828107 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:34.865681 - App - INFO: Application started I/ImeTracker( 5456): joao.awsome.awsome:dda94465: onShown I/flutter ( 5456): 2024-04-22 15:19:34.909034 - App - INFO: Application started W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 20500, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 66, 20522, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 20559, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 20574, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20605, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20620, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20635, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20650, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20672, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20687, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20709, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20724, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20746, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20761, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20783, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:PREDICTION_ERROR, 20798, 0, CUJ=J V/PerfettoTrigger( 5456): Not triggering com.android.telemetry.interaction-jank-monitor-69 - not enough time since last trigger D/EGL_emulation( 5456): app_time_stats: avg=94.15ms min=8.66ms max=480.61ms count=15 D/EGL_emulation( 5456): app_time_stats: avg=500.02ms min=497.73ms max=502.30ms count=2 I/ImeTracker( 5456): joao.awsome.awsome:36d50dcb: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:36d50dcb: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 5456): app_time_stats: avg=100.02ms min=11.06ms max=500.21ms count=11 D/EGL_emulation( 5456): app_time_stats: avg=500.10ms min=498.73ms max=501.47ms count=2 I/ImeTracker( 5456): joao.awsome.awsome:4d29d9c8: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:4d29d9c8: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 5456): app_time_stats: avg=100.04ms min=0.95ms max=499.66ms count=11 I/ImeTracker( 5456): joao.awsome.awsome:84077e94: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT I/AssistStructure( 5456): Flattened final assist data: 408 bytes, containing 1 windows, 3 views D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:84077e94: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 5456): app_time_stats: avg=90.71ms min=4.11ms max=499.99ms count=14 D/EGL_emulation( 5456): app_time_stats: avg=499.81ms min=499.48ms max=500.18ms count=3 D/EGL_emulation( 5456): app_time_stats: avg=511.14ms min=500.03ms max=522.25ms count=2 D/EGL_emulation( 5456): app_time_stats: avg=492.64ms min=482.14ms max=500.11ms count=3 D/EGL_emulation( 5456): app_time_stats: avg=499.97ms min=499.85ms max=500.08ms count=2 D/EGL_emulation( 5456): app_time_stats: avg=499.98ms min=499.77ms max=500.18ms count=2 D/EGL_emulation( 5456): app_time_stats: avg=960.14ms min=499.62ms max=1420.66ms count=2 D/EGL_emulation( 5456): app_time_stats: avg=266.99ms min=1.34ms max=500.05ms count=4 D/EGL_emulation( 5456): app_time_stats: avg=500.18ms min=498.75ms max=501.60ms count=2 D/EGL_emulation( 5456): app_time_stats: avg=499.75ms min=499.63ms max=499.85ms count=3 D/EGL_emulation( 5456): app_time_stats: avg=500.24ms min=500.08ms max=500.39ms count=2 I/ImeTracker( 5456): joao.awsome.awsome:c7ef2678: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:c7ef2678: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:b852dd08: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:b852dd08: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:78e68977: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:78e68977: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 5456): app_time_stats: avg=335.75ms min=79.09ms max=500.27ms count=3 I/ImeTracker( 5456): joao.awsome.awsome:b71e3670: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:b71e3670: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:41555a88: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:41555a88: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:41a9c69f: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:41a9c69f: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:53a99eca: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:53a99eca: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:e23ea863: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:e23ea863: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:160f7bc9: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:160f7bc9: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:c0ff37da: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:c0ff37da: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 5456): app_time_stats: avg=166.18ms min=98.15ms max=385.89ms count=7 I/ImeTracker( 5456): joao.awsome.awsome:bfb950f4: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:bfb950f4: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:888a5abd: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 5456): showSoftInput() view=io.flutter.embedding.android.FlutterView{418dabf VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 5456): show(ime(), fromIme=true) I/ImeTracker( 5456): joao.awsome.awsome:888a5abd: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 5456): joao.awsome.awsome:d8ac2824: onRequestHide at ORIGIN_CLIENT_HIDE_SOFT_INPUT reason HIDE_SOFT_INPUT W/WindowOnBackDispatcher( 5456): sendCancelIfRunning: isInProgress=falsecallback=ImeCallback=ImeOnBackInvokedCallback@180368825 Callback=android.window.IOnBackInvokedCallback$Stub$Proxy@d368897 D/EGL_emulation( 5456): app_time_stats: avg=1106.78ms min=1.37ms max=21275.61ms count=20 I/flutter ( 5456): 2024-04-22 15:19:56.236952 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:56.327025 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:56.376339 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:56.407515 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:56.423756 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:56.439922 - App - INFO: Application started I/flutter ( 5456): 2024-04-22 15:19:56.457688 - App - INFO: Application started I/ImeTracker( 5456): joao.awsome.awsome:2c5f3f8b: onRequestHide at ORIGIN_CLIENT_HIDE_SOFT_INPUT reason HIDE_SOFT_INPUT_BY_INSETS_API I/ImeTracker( 5456): joao.awsome.awsome:d8ac2824: onHidden I/flutter ( 5456): 2024-04-22 15:19:56.490923 - App - INFO: Application started W/FrameTracker( 5456): Missed App frame:UNKNOWN: 88, 22440, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 88, 22440, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 66, 22462, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 66, 22476, 0, CUJ=J W/FrameTracker( 5456): Missed App frame:UNKNOWN: 88, 22484, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 88, 22484, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22493, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22500, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22516, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22531, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22546, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22568, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22576, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22591, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22606, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22621, 0, CUJ=J W/FrameTracker( 5456): Missed SF frame:UNKNOWN: 80, 22636, 0, CUJ=J V/PerfettoTrigger( 5456): Not triggering com.android.telemetry.interaction-jank-monitor-69 - not enough time since last trigger D/EGL_emulation( 5456): app_time_stats: avg=160.08ms min=16.65ms max=1312.97ms count=13 I/flutter ( 5456): 2024-04-22 15:19:58.568896 - AWS.AWSHttpOperation.3e864671-907e-4bb2-a80a-78af764da55d - FINER: Opened server connection I/flutter ( 5456): 2024-04-22 15:19:58.579796 - AWS.AWSHttpOperation.3e864671-907e-4bb2-a80a-78af764da55d - FINER: Request sent I/flutter ( 5456): 2024-04-22 15:19:58.876275 - AWS.AWSHttpOperation.3e864671-907e-4bb2-a80a-78af764da55d - FINER: Received headers I/flutter ( 5456): 2024-04-22 15:19:58.883551 - AWS.AWSHttpOperation.3e864671-907e-4bb2-a80a-78af764da55d - FINER: Subscription canceled I/flutter ( 5456): 2024-04-22 15:19:58.883726 - AWS.AWSHttpOperation.3e864671-907e-4bb2-a80a-78af764da55d - FINER: Canceling request I/flutter ( 5456): 2024-04-22 15:19:58.883887 - AWS.AWSHttpOperation.3e864671-907e-4bb2-a80a-78af764da55d - FINER: Detaching socket I/flutter ( 5456): 2024-04-22 15:19:59.267630 - AWS.AWSHttpOperation.d80a61d9-6649-45f1-8c96-3c2ceb6861b6 - FINER: Opened server connection I/flutter ( 5456): 2024-04-22 15:19:59.268758 - AWS.AWSHttpOperation.d80a61d9-6649-45f1-8c96-3c2ceb6861b6 - FINER: Request sent I/flutter ( 5456): 2024-04-22 15:19:59.509232 - AWS.AWSHttpOperation.d80a61d9-6649-45f1-8c96-3c2ceb6861b6 - FINER: Received headers I/flutter ( 5456): 2024-04-22 15:19:59.510212 - AWS.AWSHttpOperation.d80a61d9-6649-45f1-8c96-3c2ceb6861b6 - FINER: Subscription canceled I/flutter ( 5456): 2024-04-22 15:19:59.510311 - AWS.AWSHttpOperation.d80a61d9-6649-45f1-8c96-3c2ceb6861b6 - FINER: Canceling request I/flutter ( 5456): 2024-04-22 15:19:59.510352 - AWS.AWSHttpOperation.d80a61d9-6649-45f1-8c96-3c2ceb6861b6 - FINER: Detaching socket I/flutter ( 5456): 2024-04-22 15:19:59.884623 - AWS.AWSHttpOperation.a7a9dcb9-9d68-493d-94e3-05c1f43a9380 - FINER: Opened server connection I/flutter ( 5456): 2024-04-22 15:19:59.886036 - AWS.AWSHttpOperation.a7a9dcb9-9d68-493d-94e3-05c1f43a9380 - FINER: Request sent I/flutter ( 5456): 2024-04-22 15:20:00.147014 - AWS.AWSHttpOperation.a7a9dcb9-9d68-493d-94e3-05c1f43a9380 - FINER: Received headers I/flutter ( 5456): 2024-04-22 15:20:00.149417 - AWS.AWSHttpOperation.a7a9dcb9-9d68-493d-94e3-05c1f43a9380 - FINER: Subscription canceled I/flutter ( 5456): 2024-04-22 15:20:00.149659 - AWS.AWSHttpOperation.a7a9dcb9-9d68-493d-94e3-05c1f43a9380 - FINER: Canceling request I/flutter ( 5456): 2024-04-22 15:20:00.149748 - AWS.AWSHttpOperation.a7a9dcb9-9d68-493d-94e3-05c1f43a9380 - FINER: Detaching socket I/amplify:aws-datastore( 5456): Orchestrator lock acquired. I/amplify:aws-datastore( 5456): DataStore plugin initialized. I/amplify:aws-datastore( 5456): Orchestrator transitioning from STOPPED to SYNC_VIA_API I/amplify:aws-datastore( 5456): Starting to observe local storage changes. I/amplify:aws-datastore( 5456): Now observing local storage. Local changes will be enqueued to mutation outbox. I/amplify:aws-datastore( 5456): Setting currentState to LOCAL_ONLY I/amplify:aws-datastore( 5456): Setting currentState to SYNC_VIA_API I/amplify:aws-datastore( 5456): Orchestrator lock released. I/amplify:flutter:datastore( 5456): Established a new stream form flutter com.amplifyframework.datastore.storage.sqlite.SQLiteStorageAdapter$$ExternalSyntheticLambda13@18e3323 I/amplify:aws-datastore( 5456): Starting API synchronization mode. I/amplify:aws-datastore( 5456): Starting processing subscription events. I/amplify:aws-datastore( 5456): Orchestrator lock acquired. I/amplify:aws-datastore( 5456): DataStore plugin initialized. I/amplify:aws-datastore( 5456): Orchestrator lock released. D/TrafficStats( 5456): tagSocket(139) with statsTag=0xffffffff, statsUid=-1 D/TrafficStats( 5456): tagSocket(143) with statsTag=0xffffffff, statsUid=-1 D/EGL_emulation( 5456): app_time_stats: avg=11.36ms min=1.13ms max=65.21ms count=51 W/ker.awesome( 5456): Long monitor contention with owner pool-7-thread-4 (5680) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=2 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 1.865s W/amplify:aws-datastore( 5456): Unauthorized failure:ON_DELETE User D/EGL_emulation( 5456): app_time_stats: avg=3.18ms min=1.36ms max=26.60ms count=61 W/ker.awesome( 5456): Long monitor contention with owner pool-7-thread-4 (5680) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=6 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.662s W/amplify:aws-datastore( 5456): Unauthorized failure:ON_CREATE User W/ker.awesome( 5456): Long monitor contention with owner pool-7-thread-4 (5680) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=7 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.884s W/amplify:aws-datastore( 5456): Unauthorized failure:ON_UPDATE User I/amplify:aws-datastore( 5456): Started subscription processor for models: [User] of types [ON_CREATE, ON_UPDATE, ON_DELETE]. D/TrafficStats( 5456): tagSocket(145) with statsTag=0xffffffff, statsUid=-1 D/EGL_emulation( 5456): app_time_stats: avg=8.94ms min=1.80ms max=28.63ms count=60 W/amplify:aws-datastore( 5456): Initial cloud sync failed for User. W/amplify:aws-datastore( 5456): IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 5456): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 5456): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 5456): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 5456): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 5456): at java.lang.Thread.run(Thread.java:1012) E/amplify:flutter:datastore( 5456): DataStoreException{message=Initial cloud sync failed for User., cause=IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=Check your internet connection.} E/amplify:aws-datastore( 5456): Failure encountered while attempting to start API sync. E/amplify:aws-datastore( 5456): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at E/amplify:aws-datastore( 5456): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that E/amplify:aws-datastore( 5456): match your scenario, and file an issue with the details of the bug if there isn't.} E/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) E/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) E/amplify:aws-datastore( 5456): at java.util.concurrent.FutureTask.run(FutureTask.java:264) E/amplify:aws-datastore( 5456): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) E/amplify:aws-datastore( 5456): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) E/amplify:aws-datastore( 5456): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) E/amplify:aws-datastore( 5456): at java.lang.Thread.run(Thread.java:1012) E/amplify:aws-datastore( 5456): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) E/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) E/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) E/amplify:aws-datastore( 5456): ... 18 more E/amplify:aws-datastore( 5456): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) E/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) E/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) E/amplify:aws-datastore( 5456): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) E/amplify:aws-datastore( 5456): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) E/amplify:aws-datastore( 5456): ... 3 more W/amplify:aws-datastore( 5456): API sync failed - transitioning to LOCAL_ONLY. W/amplify:aws-datastore( 5456): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at W/amplify:aws-datastore( 5456): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that W/amplify:aws-datastore( 5456): match your scenario, and file an issue with the details of the bug if there isn't.} W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) W/amplify:aws-datastore( 5456): at java.util.concurrent.FutureTask.run(FutureTask.java:264) W/amplify:aws-datastore( 5456): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) W/amplify:aws-datastore( 5456): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 5456): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 5456): at java.lang.Thread.run(Thread.java:1012) W/amplify:aws-datastore( 5456): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) W/amplify:aws-datastore( 5456): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) W/amplify:aws-datastore( 5456): ... 18 more W/amplify:aws-datastore( 5456): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 5456): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 5456): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 5456): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 5456): ... 3 more I/amplify:aws-datastore( 5456): Orchestrator transitioning from SYNC_VIA_API to LOCAL_ONLY I/amplify:aws-datastore( 5456): Stopping subscription processor. I/amplify:aws-datastore( 5456): Stopped subscription processor. I/amplify:aws-datastore( 5456): Setting currentState to LOCAL_ONLY D/EGL_emulation( 5456): app_time_stats: avg=10.26ms min=1.33ms max=22.88ms count=60

I don't have an iOS to validate, so I am facing the issue only on Android.

When I use the Amplify.Datastore.query() the query also returns an empty record to me, and It seems to be the same error message.

Full log using Amplify.Datastore.query()

Launching lib/main.dart on sdk gphone64 x86 64 in debug mode... Building with Flutter multidex support enabled. ✓ Built build/app/outputs/flutter-apk/app-debug.apk. D/FlutterGeolocator( 6185): Attaching Geolocator to activity D/FlutterGeolocator( 6185): Creating service. D/FlutterGeolocator( 6185): Binding to location service. D/FlutterGeolocator( 6185): Geolocator foreground service connected D/FlutterGeolocator( 6185): Initializing Geolocator services D/FlutterGeolocator( 6185): Flutter engine connected. Connected engine count 1 Connecting to VM Service at ws://127.0.0.1:33181/CLtfPghLQmI=/ws W/amplify:aws-datastore( 6185): The doSyncRetry configuration will be deprecated in a future version. Please discontinue use of this API. W/amplify:aws-datastore( 6185): Disabling sync retries will be deprecated in a future version. I/amplify:flutter:datastore( 6185): Added Auth plugin I/amplify:flutter:datastore( 6185): Added API plugin D/CompatibilityChangeReporter( 6185): Compat change id reported: 247079863; UID 10191; state: DISABLED I/amplify:flutter:datastore( 6185): Unhandled DataStoreHubEvent: SUCCEEDED I/amplify:flutter:datastore( 6185): com.amplifyframework.core.category.CategoryInitializationResult@71cacd7 I/amplify:aws-datastore( 6185): DataStore plugin initialized. I/flutter ( 6185): 2024-04-22 16:01:11.258522 - App - INFO: Application started D/EGL_emulation( 6185): app_time_stats: avg=22.67ms min=2.36ms max=202.42ms count=42 D/ProfileInstaller( 6185): Installing profile for joao.awesome.awesome I/ImeTracker( 6185): joao.awesome.awesome:ca404fc5: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F....ID 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT I/AssistStructure( 6185): Flattened final assist data: 408 bytes, containing 1 windows, 3 views D/EGL_emulation( 6185): app_time_stats: avg=12466.50ms min=34.38ms max=24898.62ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=847.67ms min=1.25ms max=22861.85ms count=28 D/EGL_emulation( 6185): app_time_stats: avg=241.26ms min=18.17ms max=1106.84ms count=5 D/InsetsController( 6185): show(ime(), fromIme=true) D/EGL_emulation( 6185): app_time_stats: avg=1333.62ms min=1333.62ms max=1333.62ms count=1 I/flutter ( 6185): 2024-04-22 16:01:38.146742 - App - INFO: Application started I/flutter ( 6185): 2024-04-22 16:01:38.293971 - App - INFO: Application started I/flutter ( 6185): 2024-04-22 16:01:38.345817 - App - INFO: Application started I/ImeTracker( 6185): joao.awesome.awesome:ca404fc5: onShown I/flutter ( 6185): 2024-04-22 16:01:38.413519 - App - INFO: Application started I/flutter ( 6185): 2024-04-22 16:01:38.460247 - App - INFO: Application started W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60321, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60336, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60351, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60373, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60388, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60403, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60418, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60433, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60448, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60463, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60478, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60486, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60494, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60509, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60517, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60525, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60540, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60548, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 60556, 0, CUJ=J V/PerfettoTrigger( 6185): Triggering /system/bin/trigger_perfetto com.android.telemetry.interaction-jank-monitor-69 I/ImeTracker( 6185): joao.awesome.awesome:898f8ee2: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:898f8ee2: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 6185): app_time_stats: avg=121.66ms min=7.06ms max=429.09ms count=9 I/ImeTracker( 6185): joao.awesome.awesome:4fdaea90: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT I/AssistStructure( 6185): Flattened final assist data: 408 bytes, containing 1 windows, 3 views D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:4fdaea90: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 6185): app_time_stats: avg=51.50ms min=1.31ms max=333.16ms count=21 I/ImeTracker( 6185): joao.awesome.awesome:831a6272: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:831a6272: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:fec1aa3d: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:fec1aa3d: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:ed672aba: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:ed672aba: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:47d22341: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:47d22341: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:ee59670e: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:ee59670e: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:b9202142: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:b9202142: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:76fc869b: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:76fc869b: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 6185): app_time_stats: avg=201.02ms min=42.57ms max=432.30ms count=7 I/ImeTracker( 6185): joao.awesome.awesome:68f08380: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:68f08380: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:6ddcea0b: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:6ddcea0b: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:12a348a1: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:12a348a1: onCancelled at PHASE_CLIENT_APPLY_ANIMATION I/ImeTracker( 6185): joao.awesome.awesome:531a49f: onRequestShow at ORIGIN_CLIENT_SHOW_SOFT_INPUT reason SHOW_SOFT_INPUT D/InputMethodManager( 6185): showSoftInput() view=io.flutter.embedding.android.FlutterView{9283019 VFE...... .F...... 0,0-720,1280 #2 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT D/InsetsController( 6185): show(ime(), fromIme=true) I/ImeTracker( 6185): joao.awesome.awesome:531a49f: onCancelled at PHASE_CLIENT_APPLY_ANIMATION D/EGL_emulation( 6185): app_time_stats: avg=218.58ms min=66.87ms max=494.46ms count=5 D/EGL_emulation( 6185): app_time_stats: avg=501.91ms min=501.44ms max=502.38ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=498.69ms min=497.06ms max=499.64ms count=3 D/TransportRuntime.CctTransportBackend( 6185): Making request to: https://firebaselogging.googleapis.com/v0cc/log/batch?format=json_proto3 D/TrafficStats( 6185): tagSocket(145) with statsTag=0xffffffff, statsUid=-1 D/EGL_emulation( 6185): app_time_stats: avg=501.30ms min=499.11ms max=504.76ms count=3 I/TransportRuntime.CctTransportBackend( 6185): Status Code: 200 I/TransportRuntime.CctTransportBackend( 6185): Content-Type: application/json; charset=UTF-8 I/TransportRuntime.CctTransportBackend( 6185): Content-Encoding: gzip D/EGL_emulation( 6185): app_time_stats: avg=498.53ms min=495.54ms max=500.29ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=501.29ms min=496.60ms max=505.99ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=498.97ms min=496.78ms max=500.69ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.11ms min=499.80ms max=500.43ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.37ms min=500.30ms max=500.45ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=500.27ms min=499.06ms max=501.48ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=499.42ms min=499.02ms max=500.08ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.19ms min=499.75ms max=500.88ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.74ms min=500.25ms max=501.23ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=499.20ms min=498.38ms max=499.76ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.77ms min=499.97ms max=501.58ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=499.57ms min=497.87ms max=500.62ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.27ms min=499.85ms max=500.68ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=501.69ms min=500.04ms max=503.34ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=498.40ms min=495.88ms max=499.73ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.30ms min=500.29ms max=500.30ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=499.99ms min=499.44ms max=500.54ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=500.05ms min=499.85ms max=500.25ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=499.84ms min=499.06ms max=500.72ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=499.88ms min=497.09ms max=502.56ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=502.04ms min=499.85ms max=504.24ms count=2 D/EGL_emulation( 6185): app_time_stats: avg=498.44ms min=496.12ms max=499.65ms count=3 D/EGL_emulation( 6185): app_time_stats: avg=500.26ms min=500.00ms max=500.51ms count=2 I/ImeTracker( 6185): joao.awesome.awesome:3cfd27a3: onRequestHide at ORIGIN_CLIENT_HIDE_SOFT_INPUT reason HIDE_SOFT_INPUT D/EGL_emulation( 6185): app_time_stats: avg=1897.92ms min=0.74ms max=37868.86ms count=20 W/WindowOnBackDispatcher( 6185): sendCancelIfRunning: isInProgress=falsecallback=ImeCallback=ImeOnBackInvokedCallback@180368825 Callback=android.window.IOnBackInvokedCallback$Stub$Proxy@fc603b2 I/flutter ( 6185): DEBUG | SignInStateMachine | Device secrets not present for user: besourosuco666@tuamaeaquelaursa.com I/flutter ( 6185): 2024-04-22 16:02:16.332572 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine - FINE: Device secrets not present for user: besourosuco666@tuamaeaquelaursa.com I/flutter ( 6185): DEBUG | SrpInitWorker | Starting worker I/flutter ( 6185): 2024-04-22 16:02:16.441530 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine.SrpInitWorker - FINE: Starting worker I/flutter ( 6185): 2024-04-22 16:02:16.464241 - App - INFO: Application started D/EGL_emulation( 6185): app_time_stats: avg=213.09ms min=10.07ms max=499.53ms count=5 I/flutter ( 6185): 2024-04-22 16:02:16.524403 - App - INFO: Application started I/flutter ( 6185): 2024-04-22 16:02:16.558482 - App - INFO: Application started I/flutter ( 6185): 2024-04-22 16:02:16.590810 - App - INFO: Application started I/ImeTracker( 6185): joao.awesome.awesome:fb3066c2: onRequestHide at ORIGIN_CLIENT_HIDE_SOFT_INPUT reason HIDE_SOFT_INPUT_BY_INSETS_API I/ImeTracker( 6185): joao.awesome.awesome:3cfd27a3: onHidden I/flutter ( 6185): 2024-04-22 16:02:16.624003 - App - INFO: Application started W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 61927, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 61949, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 61964, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 61979, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 61987, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 61995, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62003, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62011, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62019, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62027, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62035, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62050, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62065, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62080, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62095, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62103, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62118, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62126, 0, CUJ=J W/FrameTracker( 6185): Missed SF frame:UNKNOWN: 80, 62141, 0, CUJ=J V/PerfettoTrigger( 6185): Not triggering com.android.telemetry.interaction-jank-monitor-69 - not enough time since last trigger I/flutter ( 6185): DEBUG | SrpInitWorker | Connected from worker I/flutter ( 6185): 2024-04-22 16:02:16.682834 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine.SrpInitWorker - FINE: Connected from worker I/flutter ( 6185): VERBOSE | SrpInitWorker | Got message: SrpInitResult { I/flutter ( 6185): privateA=70180883687030386763479129957172219182732395327576547238693279989693639125400049173584970475226452243274868698938816719609249399645352663538554285723508164847885140446265903964251336634358934996094493226300985957957486729167317626831468920991534545906229533541299302535841894929046749065067790198581035149049, I/flutter ( 6185): publicA=2086150020348844265746091094966049165047258398575781144170883135215541812335410071774418523443053270885955947554650811113466951249174632992353440687672154577717512950503070459009106326308720706254303581830772967758562191582411547799018123221355001338905908964793921561227463981417928581055397809723916066888709304556096504197178690913881199141749257793256074658027534539686277711187401891351059435172580470259319531866474298173703742107631827438231891616712038446595001799753213747829304856318835402867765375071281761811932024175733141726066995929923531067111651865470646182581127712455366529085463718593592788488705619842417252666212449 I/flutter ( 6185): 2024-04-22 16:02:16.724568 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine.SrpInitWorker - FINEST: Got message: SrpInitResult { I/flutter ( 6185): privateA=70180883687030386763479129957172219182732395327576547238693279989693639125400049173584970475226452243274868698938816719609249399645352663538554285723508164847885140446265903964251336634358934996094493226300985957957486729167317626831468920991534545906229533541299302535841894929046749065067790198581035149049, I/flutter ( 6185): publicA=20861500203488442657460910949660491650472583985757811441708831352155418123354100717744185234430532708859559475546508111134669512491746329923534406876721545777175129505030704590091063263087207062543035818307729677585621915824115477990181232213550013389059089647939215612274639814179285810553978097239160668887093045560965041971786909138811991417492577932560746580275345396862777111874018913510594351725804702593195318664742981737037421076318274382318916167120384465950017997532137478293048563188354028677653750712817618119320241757331417260669959299235310671116 I/flutter ( 6185): 2024-04-22 16:02:16.742645 - AWS.ASFContextDataProvider - FINER: Got native context data: ASFContextData { I/flutter ( 6185): deviceName=emu64xa, I/flutter ( 6185): thirdPartyDeviceId=android_id, I/flutter ( 6185): deviceFingerprint=google/sdk_gphone64_x86_64/emu64xa:14/UE1A.230829.036.A1/11228894:userdebug/dev-keys, I/flutter ( 6185): clientTimezone=-03:00, I/flutter ( 6185): applicationName=awesome, I/flutter ( 6185): applicationVersion=0.0.1, I/flutter ( 6185): deviceLanguage=en-US, I/flutter ( 6185): deviceOsReleaseVersion=14, I/flutter ( 6185): screenHeightPixels=1280, I/flutter ( 6185): screenWidthPixels=720, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:16.757665 - AWS.ASFContextDataProvider.ASFWorker - FINE: Starting worker I/flutter ( 6185): 2024-04-22 16:02:16.936649 - AWS.ASFContextDataProvider.ASFWorker - FINE: Connected from worker I/flutter ( 6185): 2024-04-22 16:02:16.940970 - AWS.ASFContextDataProvider.ASFWorker - FINEST: Sending payload: { I/flutter ( 6185): "contextData": { I/flutter ( 6185): "DeviceId": "021cb2bc-8806-4a71-a017-351e4713d289:2024-04-22T19:02:16.749009Z", I/flutter ( 6185): "DeviceName": "emu64xa", I/flutter ( 6185): "ThirdPartyDeviceId": "android_id", I/flutter ( 6185): "DeviceFingerprint": "google/sdk_gphone64_x86_64/emu64xa:14/UE1A.230829.036.A1/11228894:userdebug/dev-keys", I/flutter ( 6185): "ClientTimezone": "-03:00", I/flutter ( 6185): "ApplicationName": "awesome", I/flutter ( 6185): "ApplicationVersion": "0.0.1", I/flutter ( 6185): "DeviceLanguage": "en-US", I/flutter ( 6185): "DeviceOsReleaseVersion": "14", I/flutter ( 6185): "ScreenHeightPixels": "1280", I/flutter ( 6185): "ScreenWidthPixels": "720" I/flutter ( 6185): }, I/flutter ( 6185): "username": "besourosuco666@tuamaeaquelaursa.com", I/flutter ( 6185): "userPoolId": "us-east-2_RNxsB0zEu", I/flutter ( 6185): "timestamp": "1713812536938" I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:16.957178 - AWS.ASFContextDataProvider.ASFWorker - FINEST: Got message: ASFWorkerResponse { I/flutter ( 6185): requestId=0, I/flutter ( 6185): userContextData=UserContextDataType { I/flutter ( 6185): ipAddress=***SENSITIVE***, I/flutter ( 6185): encodedData=***SENSITIVE***, I/flutter ( 6185): }, I/flutter ( 6185): } I/flutter ( 6185): VERBOSE | SignInStateMachine | InitiateAuthRequest { I/flutter ( 6185): authFlow=USER_SRP_AUTH, I/flutter ( 6185): authParameters=***SENSITIVE***, I/flutter ( 6185): clientMetadata={}, I/flutter ( 6185): clientId=***SENSITIVE***, I/flutter ( 6185): userContextData=***SENSITIVE***, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:16.959865 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine - FINER: InitiateAuthRequest { I/flutter ( 6185): authFlow=USER_SRP_AUTH, I/flutter ( 6185): authParameters=***SENSITIVE***, I/flutter ( 6185): clientMetadata={}, I/flutter ( 6185): clientId=***SENSITIVE***, I/flutter ( 6185): userContextData=***SENSITIVE***, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:17.420616 - AWS.AWSHttpOperation.6a6daf89-b130-482f-bf86-9fcaa4ad9c47 - FINER: Opened server connection I/flutter ( 6185): 2024-04-22 16:02:17.433929 - AWS.AWSHttpOperation.6a6daf89-b130-482f-bf86-9fcaa4ad9c47 - FINER: Request sent D/EGL_emulation( 6185): app_time_stats: avg=14.77ms min=1.64ms max=56.06ms count=49 D/EGL_emulation( 6185): app_time_stats: avg=14.23ms min=1.51ms max=17.34ms count=60 D/EGL_emulation( 6185): app_time_stats: avg=1.86ms min=1.12ms max=4.61ms count=60 I/flutter ( 6185): 2024-04-22 16:02:20.442125 - AWS.AWSHttpOperation.6a6daf89-b130-482f-bf86-9fcaa4ad9c47 - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:20.448551 - AWS.AWSHttpOperation.6a6daf89-b130-482f-bf86-9fcaa4ad9c47 - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:20.448732 - AWS.AWSHttpOperation.6a6daf89-b130-482f-bf86-9fcaa4ad9c47 - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:20.448874 - AWS.AWSHttpOperation.6a6daf89-b130-482f-bf86-9fcaa4ad9c47 - FINER: Detaching socket I/flutter ( 6185): VERBOSE | SignInStateMachine | InitiateAuthResponse { I/flutter ( 6185): challengeName=PASSWORD_VERIFIER, I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeParameters={SALT: 3a0757b7ee3780db85aa4b356ba210d4, SECRET_BLOCK: AgV4c6IkxuDyU7MUO3XUEZvWszgN3htUOTQKY3w9eQOGX1wAewACAAZJc3N1ZXIAEkFXU1Bhc3N3b3JkU2VydmljZQAVYXdzLWNyeXB0by1wdWJsaWMta2V5AERBeFpqL3dodEJuKzRRTG5VT2Fkd2xZcjhuY1AyT1pNb3J1Q3FrMCtYRDR1dXpYSTZqcml1aHBqRzlmWHpLQWtHbFE9PQABAAdhd3Mta21zAEthcm46YXdzOmttczp1cy1lYXN0LTI6NDE4MDg3NjMzODk4OmtleS8xNTA4M2NlYi0zMDAwLTRkN2UtYjEyNy03MzRmOTM2MGVhNjYAuAECAQB4P9AAnr6FwauNOdEcu+3Lmv5aODpXKHvGIWPe/mJXQ/QB91hwuF3tBvFAk4EzzDT7+QAAAH4wfAYJKoZIhvcNAQcGoG8wbQIBADBoBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCapHMHM9lwJbTdxowIBEIA7PKjD6y/K4L7f5V3FvvuO+NYnhWUxnrPCS4pzkCkNUOkR2wztjMGohCDJ/Y6bRkUhq7CkevuR/lv2ZWsCAAAQAD9I2UMQBLuuSwB9BWvNMMi/4b7FW59iPQUh23wtCc8vIHIK6FDPrJJqk9AY3Ecks/////8AAAABAAAAAAAAAAAAAAABAAAFEZ79Edmfkax/t9QbcoqAjpaX8cBAmsOL/GcOQaYdDTkAANv6ZX10NhcDLtA0JB0cUwrI7a+Do9xfMz8NijqZcPTSLmNR4fapVM67kzckCOai5h+SJvJvt6FvQtMThW0/lwIkhIFLUPdrFa3GLbjc/Z I/flutter ( 6185): 2024-04-22 16:02:20.455574 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine - FINER: InitiateAuthResponse { I/flutter ( 6185): challengeName=PASSWORD_VERIFIER, I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeParameters={SALT: 3a0757b7ee3780db85aa4b356ba210d4, SECRET_BLOCK: AgV4c6IkxuDyU7MUO3XUEZvWszgN3htUOTQKY3w9eQOGX1wAewACAAZJc3N1ZXIAEkFXU1Bhc3N3b3JkU2VydmljZQAVYXdzLWNyeXB0by1wdWJsaWMta2V5AERBeFpqL3dodEJuKzRRTG5VT2Fkd2xZcjhuY1AyT1pNb3J1Q3FrMCtYRDR1dXpYSTZqcml1aHBqRzlmWHpLQWtHbFE9PQABAAdhd3Mta21zAEthcm46YXdzOmttczp1cy1lYXN0LTI6NDE4MDg3NjMzODk4OmtleS8xNTA4M2NlYi0zMDAwLTRkN2UtYjEyNy03MzRmOTM2MGVhNjYAuAECAQB4P9AAnr6FwauNOdEcu+3Lmv5aODpXKHvGIWPe/mJXQ/QB91hwuF3tBvFAk4EzzDT7+QAAAH4wfAYJKoZIhvcNAQcGoG8wbQIBADBoBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCapHMHM9lwJbTdxowIBEIA7PKjD6y/K4L7f5V3FvvuO+NYnhWUxnrPCS4pzkCkNUOkR2wztjMGohCDJ/Y6bRkUhq7CkevuR/lv2ZWsCAAAQAD9I2UMQBLuuSwB9BWvNMMi/4b7FW59iPQUh23wtCc8vIHIK6FDPrJJqk9AY3Ecks/////8AAAABAAAAAAAAAAAAAAABAAAFEZ79Edmfkax/t9QbcoqAjpaX8cBAmsOL/GcOQaYdDTkAANv6ZX10NhcDLtA0JB0cUwrI7a+Do9xfMz8NijqZcPTSLmNR4 I/flutter ( 6185): DEBUG | SignInStateMachine | Device secrets not present for user: d19b0580-b0d1-70c1-1b24-a4a4dea849c7 I/flutter ( 6185): 2024-04-22 16:02:20.464657 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine - FINE: Device secrets not present for user: d19b0580-b0d1-70c1-1b24-a4a4dea849c7 I/flutter ( 6185): DEBUG | SrpPasswordVerifierWorker | Starting worker I/flutter ( 6185): 2024-04-22 16:02:20.467594 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine.SrpPasswordVerifierWorker - FINE: Starting worker D/EGL_emulation( 6185): app_time_stats: avg=3.55ms min=1.18ms max=22.35ms count=59 I/flutter ( 6185): DEBUG | SrpPasswordVerifierWorker | Connected from worker I/flutter ( 6185): 2024-04-22 16:02:20.636136 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine.SrpPasswordVerifierWorker - FINE: Connected from worker I/flutter ( 6185): VERBOSE | SrpPasswordVerifierWorker | Got message: RespondToAuthChallengeRequest { I/flutter ( 6185): clientId=***SENSITIVE***, I/flutter ( 6185): challengeName=PASSWORD_VERIFIER, I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeResponses=***SENSITIVE***, I/flutter ( 6185): userContextData=***SENSITIVE***, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:20.688149 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine.SrpPasswordVerifierWorker - FINEST: Got message: RespondToAuthChallengeRequest { I/flutter ( 6185): clientId=***SENSITIVE***, I/flutter ( 6185): challengeName=PASSWORD_VERIFIER, I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeResponses=***SENSITIVE***, I/flutter ( 6185): userContextData=***SENSITIVE***, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:20.694066 - AWS.ASFContextDataProvider - FINER: Got native context data: ASFContextData { I/flutter ( 6185): deviceName=emu64xa, I/flutter ( 6185): thirdPartyDeviceId=android_id, I/flutter ( 6185): deviceFingerprint=google/sdk_gphone64_x86_64/emu64xa:14/UE1A.230829.036.A1/11228894:userdebug/dev-keys, I/flutter ( 6185): clientTimezone=-03:00, I/flutter ( 6185): applicationName=awesome, I/flutter ( 6185): applicationVersion=0.0.1, I/flutter ( 6185): deviceLanguage=en-US, I/flutter ( 6185): deviceOsReleaseVersion=14, I/flutter ( 6185): screenHeightPixels=1280, I/flutter ( 6185): screenWidthPixels=720, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:20.697378 - AWS.ASFContextDataProvider.ASFWorker - FINEST: Sending payload: { I/flutter ( 6185): "contextData": { I/flutter ( 6185): "DeviceId": "021cb2bc-8806-4a71-a017-351e4713d289:2024-04-22T19:02:16.749009Z", I/flutter ( 6185): "DeviceName": "emu64xa", I/flutter ( 6185): "ThirdPartyDeviceId": "android_id", I/flutter ( 6185): "DeviceFingerprint": "google/sdk_gphone64_x86_64/emu64xa:14/UE1A.230829.036.A1/11228894:userdebug/dev-keys", I/flutter ( 6185): "ClientTimezone": "-03:00", I/flutter ( 6185): "ApplicationName": "awesome", I/flutter ( 6185): "ApplicationVersion": "0.0.1", I/flutter ( 6185): "DeviceLanguage": "en-US", I/flutter ( 6185): "DeviceOsReleaseVersion": "14", I/flutter ( 6185): "ScreenHeightPixels": "1280", I/flutter ( 6185): "ScreenWidthPixels": "720" I/flutter ( 6185): }, I/flutter ( 6185): "username": "d19b0580-b0d1-70c1-1b24-a4a4dea849c7", I/flutter ( 6185): "userPoolId": "us-east-2_RNxsB0zEu", I/flutter ( 6185): "timestamp": "1713812540697" I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:20.698355 - AWS.ASFContextDataProvider.ASFWorker - FINEST: Got message: ASFWorkerResponse { I/flutter ( 6185): requestId=1, I/flutter ( 6185): userContextData=UserContextDataType { I/flutter ( 6185): ipAddress=***SENSITIVE***, I/flutter ( 6185): encodedData=***SENSITIVE***, I/flutter ( 6185): }, I/flutter ( 6185): } I/flutter ( 6185): VERBOSE | SignInStateMachine | RespondToAuthChallengeRequest { I/flutter ( 6185): clientId=***SENSITIVE***, I/flutter ( 6185): challengeName=PASSWORD_VERIFIER, I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeResponses=***SENSITIVE***, I/flutter ( 6185): userContextData=***SENSITIVE***, I/flutter ( 6185): clientMetadata={}, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:20.699737 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine - FINER: RespondToAuthChallengeRequest { I/flutter ( 6185): clientId=***SENSITIVE***, I/flutter ( 6185): challengeName=PASSWORD_VERIFIER, I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeResponses=***SENSITIVE***, I/flutter ( 6185): userContextData=***SENSITIVE***, I/flutter ( 6185): clientMetadata={}, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:21.155928 - AWS.AWSHttpOperation.b2945f91-9908-4324-8e0b-7f5bd3b7b8f3 - FINER: Opened server connection I/flutter ( 6185): 2024-04-22 16:02:21.157246 - AWS.AWSHttpOperation.b2945f91-9908-4324-8e0b-7f5bd3b7b8f3 - FINER: Request sent I/flutter ( 6185): 2024-04-22 16:02:21.501738 - AWS.AWSHttpOperation.b2945f91-9908-4324-8e0b-7f5bd3b7b8f3 - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:21.503446 - AWS.AWSHttpOperation.b2945f91-9908-4324-8e0b-7f5bd3b7b8f3 - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:21.503629 - AWS.AWSHttpOperation.b2945f91-9908-4324-8e0b-7f5bd3b7b8f3 - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:21.503712 - AWS.AWSHttpOperation.b2945f91-9908-4324-8e0b-7f5bd3b7b8f3 - FINER: Detaching socket I/flutter ( 6185): VERBOSE | SignInStateMachine | RespondToAuthChallengeResponse { I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeParameters={}, I/flutter ( 6185): authenticationResult=AuthenticationResultType { I/flutter ( 6185): accessToken=***SENSITIVE***, I/flutter ( 6185): expiresIn=3600, I/flutter ( 6185): tokenType=Bearer, I/flutter ( 6185): refreshToken=***SENSITIVE***, I/flutter ( 6185): idToken=***SENSITIVE***, I/flutter ( 6185): }, I/flutter ( 6185): } I/flutter ( 6185): 2024-04-22 16:02:21.508896 - AWS.Amplify.AmplifyAuthCognito.SignInStateMachine - FINER: RespondToAuthChallengeResponse { I/flutter ( 6185): session=***SENSITIVE***, I/flutter ( 6185): challengeParameters={}, I/flutter ( 6185): authenticationResult=AuthenticationResultType { I/flutter ( 6185): accessToken=***SENSITIVE***, I/flutter ( 6185): expiresIn=3600, I/flutter ( 6185): tokenType=Bearer, I/flutter ( 6185): refreshToken=***SENSITIVE***, I/flutter ( 6185): idToken=***SENSITIVE***, I/flutter ( 6185): }, I/flutter ( 6185): } D/EGL_emulation( 6185): app_time_stats: avg=8.16ms min=1.07ms max=22.49ms count=60 I/flutter ( 6185): 2024-04-22 16:02:21.926555 - AWS.AWSHttpOperation.0062ad8c-84ca-4282-9871-9c209e9966a5 - FINER: Opened server connection I/flutter ( 6185): 2024-04-22 16:02:21.927657 - AWS.AWSHttpOperation.0062ad8c-84ca-4282-9871-9c209e9966a5 - FINER: Request sent I/flutter ( 6185): 2024-04-22 16:02:22.109903 - AWS.AWSHttpOperation.0062ad8c-84ca-4282-9871-9c209e9966a5 - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:22.110839 - AWS.AWSHttpOperation.0062ad8c-84ca-4282-9871-9c209e9966a5 - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:22.110947 - AWS.AWSHttpOperation.0062ad8c-84ca-4282-9871-9c209e9966a5 - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:22.110985 - AWS.AWSHttpOperation.0062ad8c-84ca-4282-9871-9c209e9966a5 - FINER: Detaching socket I/flutter ( 6185): 2024-04-22 16:02:22.487822 - AWS.AWSHttpOperation.09e592cc-2287-46bb-9aee-6c3c30904875 - FINER: Opened server connection I/flutter ( 6185): 2024-04-22 16:02:22.490129 - AWS.AWSHttpOperation.09e592cc-2287-46bb-9aee-6c3c30904875 - FINER: Request sent D/EGL_emulation( 6185): app_time_stats: avg=3.92ms min=1.35ms max=37.39ms count=60 I/flutter ( 6185): 2024-04-22 16:02:22.733087 - AWS.AWSHttpOperation.09e592cc-2287-46bb-9aee-6c3c30904875 - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:22.734323 - AWS.AWSHttpOperation.09e592cc-2287-46bb-9aee-6c3c30904875 - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:22.734440 - AWS.AWSHttpOperation.09e592cc-2287-46bb-9aee-6c3c30904875 - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:22.734480 - AWS.AWSHttpOperation.09e592cc-2287-46bb-9aee-6c3c30904875 - FINER: Detaching socket I/flutter ( 6185): 2024-04-22 16:02:23.101366 - AWS.AWSHttpOperation.f7645820-9040-4d77-8676-581b02cc80b2 - FINER: Opened server connection I/flutter ( 6185): 2024-04-22 16:02:23.101885 - AWS.AWSHttpOperation.f7645820-9040-4d77-8676-581b02cc80b2 - FINER: Request sent I/flutter ( 6185): 2024-04-22 16:02:23.102760 - AWS.AWSHttpOperation.0ab821a0-0d3e-4bdc-ae35-0e6a44085ff0 - FINER: Opened server connection I/flutter ( 6185): 2024-04-22 16:02:23.103463 - AWS.AWSHttpOperation.0ab821a0-0d3e-4bdc-ae35-0e6a44085ff0 - FINER: Request sent I/flutter ( 6185): 2024-04-22 16:02:23.373692 - AWS.AWSHttpOperation.0ab821a0-0d3e-4bdc-ae35-0e6a44085ff0 - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:23.374709 - AWS.AWSHttpOperation.0ab821a0-0d3e-4bdc-ae35-0e6a44085ff0 - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:23.374918 - AWS.AWSHttpOperation.0ab821a0-0d3e-4bdc-ae35-0e6a44085ff0 - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:23.374989 - AWS.AWSHttpOperation.0ab821a0-0d3e-4bdc-ae35-0e6a44085ff0 - FINER: Detaching socket I/amplify:aws-datastore( 6185): Orchestrator lock acquired. I/amplify:aws-datastore( 6185): DataStore plugin initialized. I/amplify:aws-datastore( 6185): Orchestrator transitioning from STOPPED to SYNC_VIA_API I/amplify:aws-datastore( 6185): Starting to observe local storage changes. I/amplify:aws-datastore( 6185): Now observing local storage. Local changes will be enqueued to mutation outbox. I/amplify:aws-datastore( 6185): Setting currentState to LOCAL_ONLY I/amplify:aws-datastore( 6185): Setting currentState to SYNC_VIA_API I/amplify:aws-datastore( 6185): Orchestrator lock released. I/amplify:aws-datastore( 6185): Starting API synchronization mode. I/amplify:flutter:datastore( 6185): Established a new stream form flutter com.amplifyframework.datastore.storage.sqlite.SQLiteStorageAdapter$$ExternalSyntheticLambda13@9ab096b I/amplify:aws-datastore( 6185): Starting processing subscription events. D/TrafficStats( 6185): tagSocket(149) with statsTag=0xffffffff, statsUid=-1 I/flutter ( 6185): 2024-04-22 16:02:28.702692 - AWS.AWSHttpOperation.f7645820-9040-4d77-8676-581b02cc80b2 - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:28.703487 - AWS.AWSHttpOperation.f7645820-9040-4d77-8676-581b02cc80b2 - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:28.703768 - AWS.AWSHttpOperation.f7645820-9040-4d77-8676-581b02cc80b2 - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:28.703940 - AWS.AWSHttpOperation.f7645820-9040-4d77-8676-581b02cc80b2 - FINER: Detaching socket I/amplify:aws-datastore( 6185): Orchestrator lock acquired. I/amplify:aws-datastore( 6185): DataStore plugin initialized. I/amplify:aws-datastore( 6185): Orchestrator lock released. D/EGL_emulation( 6185): app_time_stats: avg=106.38ms min=1.01ms max=5323.06ms count=51 W/ker.awesome( 6185): Long monitor contention with owner pool-7-thread-5 (6380) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=4 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.016s W/amplify:aws-datastore( 6185): Unauthorized failure:ON_DELETE User W/ker.awesome( 6185): Long monitor contention with owner pool-7-thread-5 (6380) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=5 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.221s W/amplify:aws-datastore( 6185): Unauthorized failure:ON_CREATE User W/ker.awesome( 6185): Long monitor contention with owner pool-7-thread-5 (6380) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=7 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 2.687s W/amplify:aws-datastore( 6185): Unauthorized failure:ON_UPDATE User I/amplify:aws-datastore( 6185): Started subscription processor for models: [User] of types [ON_CREATE, ON_UPDATE, ON_DELETE]. D/TrafficStats( 6185): tagSocket(140) with statsTag=0xffffffff, statsUid=-1 W/amplify:aws-datastore( 6185): Initial cloud sync failed for User. W/amplify:aws-datastore( 6185): IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 6185): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 6185): at java.lang.Thread.run(Thread.java:1012) E/amplify:flutter:datastore( 6185): DataStoreException{message=Initial cloud sync failed for User., cause=IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=Check your internet connection.} E/amplify:aws-datastore( 6185): Failure encountered while attempting to start API sync. E/amplify:aws-datastore( 6185): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at E/amplify:aws-datastore( 6185): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that E/amplify:aws-datastore( 6185): match your scenario, and file an issue with the details of the bug if there isn't.} E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) E/amplify:aws-datastore( 6185): at java.util.concurrent.FutureTask.run(FutureTask.java:264) E/amplify:aws-datastore( 6185): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) E/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) E/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) E/amplify:aws-datastore( 6185): at java.lang.Thread.run(Thread.java:1012) E/amplify:aws-datastore( 6185): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) E/amplify:aws-datastore( 6185): ... 18 more E/amplify:aws-datastore( 6185): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) E/amplify:aws-datastore( 6185): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) E/amplify:aws-datastore( 6185): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) E/amplify:aws-datastore( 6185): ... 3 more W/amplify:aws-datastore( 6185): API sync failed - transitioning to LOCAL_ONLY. W/amplify:aws-datastore( 6185): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at W/amplify:aws-datastore( 6185): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that W/amplify:aws-datastore( 6185): match your scenario, and file an issue with the details of the bug if there isn't.} W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) W/amplify:aws-datastore( 6185): at java.util.concurrent.FutureTask.run(FutureTask.java:264) W/amplify:aws-datastore( 6185): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 6185): at java.lang.Thread.run(Thread.java:1012) W/amplify:aws-datastore( 6185): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) W/amplify:aws-datastore( 6185): ... 18 more W/amplify:aws-datastore( 6185): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 6185): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 6185): ... 3 more I/amplify:aws-datastore( 6185): Orchestrator transitioning from SYNC_VIA_API to LOCAL_ONLY I/amplify:aws-datastore( 6185): Stopping subscription processor. I/amplify:aws-datastore( 6185): Stopped subscription processor. I/amplify:aws-datastore( 6185): Setting currentState to LOCAL_ONLY I/amplify:aws-datastore( 6185): Orchestrator lock acquired. I/amplify:aws-datastore( 6185): DataStore plugin initialized. I/amplify:aws-datastore( 6185): Orchestrator transitioning from LOCAL_ONLY to SYNC_VIA_API I/amplify:aws-datastore( 6185): Setting currentState to SYNC_VIA_API I/amplify:aws-datastore( 6185): Orchestrator lock released. I/amplify:aws-datastore( 6185): Starting API synchronization mode. I/amplify:flutter:datastore( 6185): Successfully started datastore remote synchronization I/amplify:aws-datastore( 6185): Starting processing subscription events. I/amplify:aws-datastore( 6185): DataStore plugin initialized. I/amplify:aws-datastore( 6185): Orchestrator lock released. D/EGL_emulation( 6185): app_time_stats: avg=11528.61ms min=11528.61ms max=11528.61ms count=1 I/flutter ( 6185): User with the given id was not found. I/flutter ( 6185): 2024-04-22 16:02:40.251819 - AwsCognitoAuthenticationService - INFO: User data load complete W/ker.awesome( 6185): Long monitor contention with owner pool-7-thread-3 (6378) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=6 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 1.411s W/amplify:aws-datastore( 6185): Unauthorized failure:ON_UPDATE User W/ker.awesome( 6185): Long monitor contention with owner pool-7-thread-3 (6378) at void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action)(SubscriptionEndpoint.java:207) waiters=7 in void com.amplifyframework.api.aws.SubscriptionEndpoint.requestSubscription(com.amplifyframework.api.graphql.GraphQLRequest, com.amplifyframework.api.aws.AuthorizationType, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Consumer, com.amplifyframework.core.Action) for 1.615s I/flutter ( 6185): 2024-04-22 16:02:40.816279 - AWS.AWSHttpOperation.2b7aa5e1-7b7f-4135-9d64-caee1b4942a5 - FINER: Opened server connection W/amplify:aws-datastore( 6185): Unauthorized failure:ON_CREATE User I/flutter ( 6185): 2024-04-22 16:02:40.817081 - AWS.AWSHttpOperation.2b7aa5e1-7b7f-4135-9d64-caee1b4942a5 - FINER: Request sent W/amplify:aws-datastore( 6185): Unauthorized failure:ON_DELETE User I/amplify:aws-datastore( 6185): Started subscription processor for models: [User] of types [ON_CREATE, ON_UPDATE, ON_DELETE]. I/flutter ( 6185): 2024-04-22 16:02:41.070859 - AWS.AWSHttpOperation.2b7aa5e1-7b7f-4135-9d64-caee1b4942a5 - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:41.071466 - AWS.AWSHttpOperation.2b7aa5e1-7b7f-4135-9d64-caee1b4942a5 - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:41.071567 - AWS.AWSHttpOperation.2b7aa5e1-7b7f-4135-9d64-caee1b4942a5 - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:41.071609 - AWS.AWSHttpOperation.2b7aa5e1-7b7f-4135-9d64-caee1b4942a5 - FINER: Detaching socket I/flutter ( 6185): 2024-04-22 16:02:41.409530 - AWS.AWSHttpOperation.7ac62c31-4ec4-43b9-8e8c-36850f6f881a - FINER: Opened server connection I/flutter ( 6185): 2024-04-22 16:02:41.409988 - AWS.AWSHttpOperation.7ac62c31-4ec4-43b9-8e8c-36850f6f881a - FINER: Request sent W/amplify:aws-datastore( 6185): Initial cloud sync failed for User. W/amplify:aws-datastore( 6185): IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 6185): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 6185): at java.lang.Thread.run(Thread.java:1012) E/amplify:flutter:datastore( 6185): DataStoreException{message=Initial cloud sync failed for User., cause=IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=Check your internet connection.} E/amplify:aws-datastore( 6185): Failure encountered while attempting to start API sync. E/amplify:aws-datastore( 6185): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at E/amplify:aws-datastore( 6185): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that E/amplify:aws-datastore( 6185): match your scenario, and file an issue with the details of the bug if there isn't.} E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) E/amplify:aws-datastore( 6185): at java.util.concurrent.FutureTask.run(FutureTask.java:264) E/amplify:aws-datastore( 6185): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) E/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) E/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) E/amplify:aws-datastore( 6185): at java.lang.Thread.run(Thread.java:1012) E/amplify:aws-datastore( 6185): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) E/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) E/amplify:aws-datastore( 6185): ... 18 more E/amplify:aws-datastore( 6185): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) E/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) E/amplify:aws-datastore( 6185): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) E/amplify:aws-datastore( 6185): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) E/amplify:aws-datastore( 6185): ... 3 more W/amplify:aws-datastore( 6185): API sync failed - transitioning to LOCAL_ONLY. W/amplify:aws-datastore( 6185): DataStoreException{message=Initial sync during DataStore initialization failed., cause=java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.}, recoverySuggestion=There is a possibility that there is a bug if this error persists. Please take a look at W/amplify:aws-datastore( 6185): https://github.com/aws-amplify/amplify-android/issues to see if there are any existing issues that W/amplify:aws-datastore( 6185): match your scenario, and file an issue with the details of the bug if there isn't.} W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:362) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator$$ExternalSyntheticLambda8.subscribe(Unknown Source:2) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableCreate.subscribeActual(CompletableCreate.java:40) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletablePeek.subscribeActual(CompletablePeek.java:51) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.subscribe(Completable.java:2850) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.operators.completable.CompletableSubscribeOn$SubscribeOnObserver.run(CompletableSubscribeOn.java:64) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Scheduler$DisposeTask.run(Scheduler.java:614) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.run(ScheduledRunnable.java:65) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.schedulers.ScheduledRunnable.call(ScheduledRunnable.java:56) W/amplify:aws-datastore( 6185): at java.util.concurrent.FutureTask.run(FutureTask.java:264) W/amplify:aws-datastore( 6185): at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) W/amplify:aws-datastore( 6185): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) W/amplify:aws-datastore( 6185): at java.lang.Thread.run(Thread.java:1012) W/amplify:aws-datastore( 6185): Caused by: java.lang.RuntimeException: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:94) W/amplify:aws-datastore( 6185): at io.reactivex.rxjava3.core.Completable.blockingAwait(Completable.java:1461) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.Orchestrator.lambda$startApiSync$4$com-amplifyframework-datastore-syncengine-Orchestrator(Orchestrator.java:358) W/amplify:aws-datastore( 6185): ... 18 more W/amplify:aws-datastore( 6185): Caused by: IrRecoverableException{message=Empty response from AppSync., cause=null, recoverySuggestion=Report to AWS team.} W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor.lambda$syncPage$16(SyncProcessor.java:325) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.syncengine.SyncProcessor$$ExternalSyntheticLambda19.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.datastore.appsync.AppSyncClient$$ExternalSyntheticLambda1.accept(Unknown Source:4) W/amplify:aws-datastore( 6185): at com.amplifyframework.api.aws.MultiAuthAppSyncGraphQLOperation$OkHttpCallback.onResponse(MultiAuthAppSyncGraphQLOperation.java:183) W/amplify:aws-datastore( 6185): at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:539) W/amplify:aws-datastore( 6185): ... 3 more I/amplify:aws-datastore( 6185): Orchestrator transitioning from SYNC_VIA_API to LOCAL_ONLY I/amplify:aws-datastore( 6185): Stopping subscription processor. I/amplify:aws-datastore( 6185): Stopped subscription processor. I/amplify:aws-datastore( 6185): Setting currentState to LOCAL_ONLY I/flutter ( 6185): 2024-04-22 16:02:41.570250 - AWS.AWSHttpOperation.7ac62c31-4ec4-43b9-8e8c-36850f6f881a - FINER: Received headers I/flutter ( 6185): 2024-04-22 16:02:41.570990 - AWS.AWSHttpOperation.7ac62c31-4ec4-43b9-8e8c-36850f6f881a - FINER: Subscription canceled I/flutter ( 6185): 2024-04-22 16:02:41.571069 - AWS.AWSHttpOperation.7ac62c31-4ec4-43b9-8e8c-36850f6f881a - FINER: Canceling request I/flutter ( 6185): 2024-04-22 16:02:41.571126 - AWS.AWSHttpOperation.7ac62c31-4ec4-43b9-8e8c-36850f6f881a - FINER: Detaching socket I/flutter ( 6185): 2024-04-22 16:02:41.602212 - AwsCognitoAuthenticationService - SEVERE: An error occurred when trying to update user data

Code used to query:
image

Using the Amplify.Datastore.save, It saves the data on phone storage but the logs are showing the same errors, so It is saved but not synced.

by the way, I am using observeQuery because of #2904.

please, let me know if you need anything else, I hope that we can solve this :)

@khatruong2009 khatruong2009 removed the pending-response Issue is pending response from the issue requestor label Apr 25, 2024
@khatruong2009
Copy link
Contributor

Hi @joaoantoniomartinsfilho, thank you for providing these details. We will take a look at it when we get the chance and get back to you with any updates. Thanks.

@Jordan-Nelson Jordan-Nelson added question A question about the Amplify Flutter libraries Investigating Issues that are assigned and are being looked into and removed pending-triage This issue is in the backlog of issues to triage labels May 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
GraphQL API Issues related to the API (GraphQL) Category Investigating Issues that are assigned and are being looked into question A question about the Amplify Flutter libraries
Projects
None yet
Development

No branches or pull requests

5 participants