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

Multi-Auth with IAM provider for public access not working #3136

Closed
tobias-feldmann opened this issue Aug 10, 2023 · 16 comments
Closed

Multi-Auth with IAM provider for public access not working #3136

tobias-feldmann opened this issue Aug 10, 2023 · 16 comments
Assignees
Labels
bug Something isn't working datastore Issues related to the DataStore category

Comments

@tobias-feldmann
Copy link

tobias-feldmann commented Aug 10, 2023

Describe the bug

Since I upgraded from Amplify v1 to v2 the following use case doesn't work anymore:

I have 2 models:

type User
@model
@auth (rules: [ { allow: owner } ])  {
  identityId: ID! @primaryKey
  email: String!
}

type Guest
@model
@auth (rules: [ { allow: public, provider: iam } ])  {
  identityId: ID! @primaryKey
}

Registered users use the Cognito user pool. Unauthenticated guests should be handled through the IAM provider.

When a user sign in via the user pool, the creation of a user model works.
However, the creation of the guest model via the IAM provider does not work for a guest without a login.
The model is created locally, but no sync to DynamoDB.

I don't use the API directly, only the DataStore.
IAM is defined as the default authorization type and additional Cognito user pool.
Conflict detection and auto merge is enabled.
If I use API_KEY as the default type without 'provider: iam' in the model, then it also works.

The DatastorePlugin is configured like this:

          try Amplify.add(plugin: AWSCognitoAuthPlugin())
          try Amplify.add(plugin: AWSAPIPlugin(modelRegistration: models))
          try Amplify.add(
              plugin: AWSDataStorePlugin(
                  modelRegistration: models,
                  configuration: .custom(authModeStrategy: .multiAuth)
              )
          )

amplifyconfiguration.json file:

{
    "UserAgent": "aws-amplify-cli/2.0",
    "Version": "1.0",
    "api": {
        "plugins": {
            "awsAPIPlugin": {
                "xxxx": {
                    "endpointType": "GraphQL",
                    "endpoint": "https://xxxx.appsync-api.eu-central-1.amazonaws.com/graphql",
                    "region": "eu-central-1",
                    "authorizationType": "AWS_IAM"
                }
            }
        }
    },
    "auth": {
        "plugins": {
            "awsCognitoAuthPlugin": {
                "UserAgent": "aws-amplify/cli",
                "Version": "0.1.0",
                "IdentityManager": {
                    "Default": {}
                },
                "CredentialsProvider": {
                    "CognitoIdentity": {
                        "Default": {
                            "PoolId": "eu-central-1:xxxx",
                            "Region": "eu-central-1"
                        }
                    }
                },
                "CognitoUserPool": {
                    "Default": {
                        "PoolId": "eu-central-1_xxxx",
                        "AppClientId": "xxxx",
                        "Region": "eu-central-1"
                    }
                },
                "Auth": {
                    "Default": {
                        "authenticationFlowType": "USER_SRP_AUTH",
                        "socialProviders": [],
                        "usernameAttributes": [
                            "EMAIL"
                        ],
                        "signupAttributes": [
                            "EMAIL"
                        ],
                        "passwordProtectionSettings": {
                            "passwordPolicyMinLength": 8,
                            "passwordPolicyCharacters": []
                        },
                        "mfaConfiguration": "OFF",
                        "mfaTypes": [
                            "SMS"
                        ],
                        "verificationMechanisms": [
                            "EMAIL"
                        ]
                    }
                },
                "AppSync": {
                    "Default": {
                        "ApiUrl": "https://xxxx.appsync-api.eu-central-1.amazonaws.com/graphql",
                        "Region": "eu-central-1",
                        "AuthMode": "AWS_IAM",
                        "ClientDatabasePrefix": "xxxx_AWS_IAM"
                    },
                    "xxxx_AMAZON_COGNITO_USER_POOLS": {
                        "ApiUrl": "https://xxxx.appsync-api.eu-central-1.amazonaws.com/graphql",
                        "Region": "eu-central-1",
                        "AuthMode": "AMAZON_COGNITO_USER_POOLS",
                        "ClientDatabasePrefix": "xxxx_AMAZON_COGNITO_USER_POOLS"
                    }
                }
            }
        }
    }
}

Steps To Reproduce

As explained in the description

Expected behavior

It should be possible to handle models using different providers.

Amplify Framework Version

2.15.2

Amplify Categories

DataStore

Dependency manager

Swift PM

Swift version

5.8.1

CLI version

12.2.3

Xcode version

14.3.1

Relevant log output

No response

Is this a regression?

Yes

Regression additional context

No response

Platforms

iOS

OS Version

iOS 16.6

Device

iPhone14

Specific to simulators

No response

Additional context

No response

@sebaland sebaland added datastore Issues related to the DataStore category bug Something isn't working labels Aug 23, 2023
@sebaland
Copy link
Member

Thanks for opening this issue.

The team will investigate and get back to you as soon as we have more information.

@thisisabhash thisisabhash self-assigned this Sep 1, 2023
@alharris-at
Copy link

Hi @tobias-feldmann, could you confirm if your auth userpool is configured to allow for unauthenticated users?

You can do this by checking the amplify/backend/auth/<auth-resource-name>/cli-inputs.json file, for the cognitoConfig.allowUnauthenticatedIdentities property, and if it is set to false, you'll need to update by walking through the amplify update auth CLI flow, allowed unauthenticated users to access resources.

@tobias-feldmann
Copy link
Author

Hi @alharris-at, yes allowUnauthenticatedIdentities is set to true in the cli-inputs.json. If I use API_KEY instead of IAM for unauthenticated users it works for me.

@thisisabhash
Copy link
Member

Hello,
We are currently investigating this issue.

I am experiencing that when the schema is only Guest, the models get created locally and successfully sync to DynamoDB with unauthenticated IAM role.

type Guest
@model
@auth (rules: [ { allow: public, provider: iam } ])  {
  identityId: ID! @primaryKey
}

However, when the schema is both User and Guest, the Guest model is saved locally but syncing fails to DynamoDB.

type User
@model
@auth (rules: [ { allow: owner } ])  {
  identityId: ID! @primaryKey
  email: String!
}

type Guest
@model
@auth (rules: [ { allow: public, provider: iam } ])  {
  identityId: ID! @primaryKey
}

We will post here with updates. Thank you for your patience with this.

@thisisabhash
Copy link
Member

Fix has been merged. We will update here once it is released.

@thisisabhash
Copy link
Member

@tobias-feldmann Please check the latest release for an update. https://github.com/aws-amplify/amplify-swift/releases/tag/2.18.2

@tobias-feldmann
Copy link
Author

tobias-feldmann commented Sep 29, 2023

@thisisabhash Great, thank you very much for the fix.
I tested with the latest version 2.19.0.
After first app start creating models as an unauthenticated user with IAM seems to work.
However, when I create or update multiple models, the DataStore seems to get into a state where creation/update is no longer possible. I get the following errors:

2023-09-29 14:53:52.701381+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.702031+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.702349+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.702605+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.702847+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.703078+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.703303+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.703547+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.704537+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.704824+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.706555+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.706853+0200 BeTidy[29140:5468209] ConnectionProviderError.unauthorized
2023-09-29 14:53:52.909070+0200 BeTidy[29140:5468209] [tcp] tcp_input [C10.1.1:2] flags=[R.] seq=1650162281, ack=2009483344, win=944 state=ESTABLISHED rcv_nxt=1650162281, snd_una=2009483344
2023-09-29 14:53:52.921879+0200 BeTidy[29140:5468367] [DataStoreInitialSyncOperation] Sync for UserTask failed due to signed out error Failed to retrieve authorization token.
2023-09-29 14:53:52.922255+0200 BeTidy[29140:5468367] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
2023-09-29 14:53:52.922975+0200 BeTidy[29140:5468368] [DataStoreInitialSyncOperation] Sync for TaskHistory failed due to signed out error Failed to retrieve authorization token.
2023-09-29 14:53:52.923275+0200 BeTidy[29140:5468368] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
2023-09-29 14:53:52.924393+0200 BeTidy[29140:5468368] [DataStoreInitialSyncOperation] Sync for User failed due to signed out error Failed to retrieve authorization token.
2023-09-29 14:53:52.924599+0200 BeTidy[29140:5468279] [DataStoreInitialSyncOperation] Sync for UserProject failed due to signed out error Failed to retrieve authorization token.
2023-09-29 14:53:52.924605+0200 BeTidy[29140:5468368] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
2023-09-29 14:53:52.924754+0200 BeTidy[29140:5468279] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
ModelSyncedEvent(modelName: "UserTask", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
ModelSyncedEvent(modelName: "TaskHistory", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
ModelSyncedEvent(modelName: "User", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
ModelSyncedEvent(modelName: "UserProject", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
ModelSyncedEvent(modelName: "Guest", isFullSync: false, isDeltaSync: true, added: 0, updated: 0, deleted: 0)
2023-09-29 14:53:53.120962+0200 BeTidy[29140:5468278] [DataStoreRemoteSyncEngine] One or more errors occurred syncing models. See below for detailed error description.
2023-09-29 14:53:53.121222+0200 BeTidy[29140:5468278] [DataStoreRemoteSyncEngine] DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: xxxx)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null, "errorInfo": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: xxxx)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null, "errorInfo": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
2023-09-29 14:53:53.126544+0200 BeTidy[29140:5468209] [DataStoreReadyEventEmitter] Failed to emit ready event, error: DataStoreError: One or more errors occurred syncing models. See below for detailed error description.

The unauthorized errors should be OK because this concerns the models of the authorized users. However, the error: "DataStoreError: An error occurred syncing Guest..." should not be there. The guest model should be able to be synchronized.

To better understand the log:

User, UserTask, UserProject, TaskHistory => @auth (rules: [ { allow: owner } ])
Guest, GuestTask, GuestProject => @auth (rules: [ { allow: public, provider: iam } ])

@thisisabhash
Copy link
Member

thisisabhash commented Sep 29, 2023

Hello,
I added the models to the schema and tried to create instances of Guest, GuestTask and GuestProject one after the another. The sync worked correctly for me.

User, UserTask, UserProject, TaskHistory => @auth (rules: [ { allow: owner } ])
Guest, GuestTask, GuestProject => @auth (rules: [ { allow: public, provider: iam } ])

Would you be able to share your schema so that I can try to reproduce it? Also, could you collect and paste the verbose logs without sensitive information using

Amplify.Logging.logLevel = .verbose

before calling Amplify.configure().

On the off chance, are you using SyncExpressions?
It'd be helpful if you can post the code snippets for when you're configuring Amplify and also when you are calling Datastore/API category

@tobias-feldmann
Copy link
Author

Hi @thisisabhash
Now I can reproduce it exactly.
It's because of the SyncExpressions. If I remove the SyncExpressions it always works. With SyncExpressions it works as long as the app is in the foreground. If I put it in the background and then enable it again, it no longer works.
I think the guest model should be enough to reproduce it with this informations.

Here is the complete init code:

    private init() {
        // initialize amplify
        self.identityId = AuthBackend.shared.getIdentityId()
        do {
          let syncGuests = DataStoreSyncExpression.syncExpression(Guest.schema) {
              return Guest.keys.identityId.eq(self.identityId)
          }
          
          let syncGuestTasks = DataStoreSyncExpression.syncExpression(GuestTask.schema) {
              return GuestTask.keys.identityId.eq(self.identityId)
          }
          
          let syncGuestProjects = DataStoreSyncExpression.syncExpression(GuestProject.schema) {
              return GuestProject.keys.identityId.eq(self.identityId)
          }
          
          let models = AmplifyModels()
          let storagePlugin = AWSS3StoragePlugin(configuration: .prefixResolver(CustomPrefixResolver()))
          try Amplify.add(plugin: AWSCognitoAuthPlugin())
          try Amplify.add(plugin: AWSAPIPlugin(modelRegistration: models))
          try Amplify.add(plugin: storagePlugin)
          // Add DataStore Plugin
          try Amplify.add(
              plugin: AWSDataStorePlugin(
                  modelRegistration: models,
                  configuration: .custom(syncExpressions: [syncGuests, syncGuestTasks, syncGuestProjects], authModeStrategy: .multiAuth)
              )
          )
          //Amplify.Logging.logLevel = .error
          Amplify.Logging.logLevel = .verbose
          try Amplify.configure()
          self._initHubEventListener()
          print("Initialized Amplify");
        } catch {
          print("Could not initialize Amplify: \(error)")
        }

and here the complete log when I saved the guest model with SyncExpressions and the app comes out of the background. So here it no longer works:

2023-09-30 12:24:21.721927+0200 BeTidy[637:65023] [DataStoreAWSDataStorePlugin] Saving: Guest(identityId: "e537bceb-64ce-4963-922f-6868ce10056e", dataPrivacy: "30.09.2023 12:21/1.0", rooms: Optional("[{\"id\":\"badezimmer\",\"active\":true,\"name\":\"Badezimmer3\",\"type\":\"badezimmer\"},{\"id\":\"buero\",\"active\":true,\"name\":\"Büro\",\"type\":\"buero\"},{\"id\":\"dachboden\",\"active\":false,\"name\":\"Dachboden\",\"type\":\"dachboden\"},{\"id\":\"esszimmer\",\"active\":false,\"name\":\"Esszimmer\",\"type\":\"esszimmer\"},{\"id\":\"flur\",\"active\":true,\"name\":\"Flur\",\"type\":\"flur\"},{\"id\":\"garage\",\"active\":false,\"name\":\"Garage\",\"type\":\"garage\"},{\"id\":\"garten_outdoor\",\"active\":false,\"name\":\"Garten \\/ Outdoor\",\"type\":\"garten_outdoor\"},{\"id\":\"keller\",\"active\":true,\"name\":\"Keller\",\"type\":\"keller\"},{\"id\":\"kinderzimmer\",\"active\":true,\"name\":\"Kinderzimmer\",\"type\":\"kinderzimmer\"},{\"id\":\"kueche\",\"active\":true,\"name\":\"Küche\",\"type\":\"kueche\"},{\"id\":\"schlafzimmer\",\"active\":true,\"name\":\"Schlafzimmer\",\"type\":\"schlafzimmer\"},{\"id\":\"speisekammer\",\"active\":true,\"name\":\"Speisekammer\",\"type\":\"speisekammer\"},{\"id\":\"wc\",\"active\":false,\"name\":\"WC\",\"type\":\"wc\"},{\"id\":\"wohnzimmer\",\"active\":true,\"name\":\"Wohnzimmer\",\"type\":\"wohnzimmer\"}]"), profiles: Optional("[{\"id\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"notificationActive\":false,\"active\":true,\"limited\":false}]"), holidays: nil, createdAt: Optional(Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:21:29 +0000)), updatedAt: Optional(Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:22:25 +0000))) with condition: nil
2023-09-30 12:24:21.722938+0200 BeTidy[637:65023] [DataStoreAWSMutationDatabaseAdapter] Initialized
2023-09-30 12:24:21.723078+0200 BeTidy[637:65023] [DataStoreAWSMutationEventPublisher] init(eventSource:)
2023-09-30 12:24:21.723497+0200 BeTidy[637:65023] [DataStoreOutgoingMutationQueue] New state: notInitialized
2023-09-30 12:24:21.723668+0200 BeTidy[637:65023] [DataStoreOutgoingMutationQueue] Initialized
2023-09-30 12:24:21.723718+0200 BeTidy[637:65023] [DataStoreStateMachine<State, Action>] Notifying: initialized
2023-09-30 12:24:21.723789+0200 BeTidy[637:65023] [DataStoreStateMachine<State, Action>] resolve(notInitialized, initialized) -> stopped
2023-09-30 12:24:21.723776+0200 BeTidy[637:65018] [DataStoreOutgoingMutationQueue] respond(to:): notInitialized
2023-09-30 12:24:21.723835+0200 BeTidy[637:65023] [DataStoreOutgoingMutationQueue] New state: stopped
2023-09-30 12:24:21.723915+0200 BeTidy[637:65023] [DataStoreRemoteSyncEngine] New state: notStarted
2023-09-30 12:24:21.724115+0200 BeTidy[637:65023] [DataStoreStateMachine<State, Action>] Notifying: receivedStart
2023-09-30 12:24:21.724159+0200 BeTidy[637:65023] [DataStoreStateMachine<State, Action>] resolve(notStarted, receivedStart) -> pausingSubscriptions
2023-09-30 12:24:21.724003+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] respond(to:): stopped
2023-09-30 12:24:21.724198+0200 BeTidy[637:65023] [DataStoreRemoteSyncEngine] New state: pausingSubscriptions
2023-09-30 12:24:21.724445+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select count("identityId") from "Guest" where "identityId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
2023-09-30 12:24:21.724589+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select count("identityId") from "Guest" where "identityId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
2023-09-30 12:24:21.724665+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select count("identityId") from "Guest" where "identityId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
2023-09-30 12:24:21.724686+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): notStarted
2023-09-30 12:24:21.725748+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] update "Guest"
set
  "identityId" = 'e537bceb-64ce-4963-922f-6868ce10056e',
  "createdAt" = '2023-09-30T10:21:29.865Z',
  "dataPrivacy" = '30.09.2023 12:21/1.0',
  "holidays" = NULL,
  "profiles" = '[{"id":"e537bceb-64ce-4963-922f-6868ce10056e","notificationActive":false,"active":true,"limited":false}]',
  "rooms" = '[{"id":"badezimmer","active":true,"name":"Badezimmer3","type":"badezimmer"},{"id":"buero","active":true,"name":"Büro","type":"buero"},{"id":"dachboden","active":false,"name":"Dachboden","type":"dachboden"},{"id":"esszimmer","active":false,"name":"Esszimmer","type":"esszimmer"},{"id":"flur","active":true,"name":"Flur","type":"flur"},{"id":"garage","active":false,"name":"Garage","type":"garage"},{"id":"garten_outdoor","active":false,"name":"Garten \/ Outdoor","type":"garten_outdoor"},{"id":"keller","active":true,"name":"Keller","type":"keller"},{"id":"kinderzimmer","active":true,"name":"Kinderzimmer","ty2023-09-30 12:24:21.725788+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): pausingSubscriptions
2023-09-30 12:24:21.725806+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] pauseSubscriptions()
2023-09-30 12:24:21.725828+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] Notifying: pausedSubscriptions
2023-09-30 12:24:21.725859+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] resolve(pausingSubscriptions, pausedSubscriptions) -> pausingMutationQueue
2023-09-30 12:24:21.725885+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] New state: pausingMutationQueue
2023-09-30 12:24:21.725918+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): pausingMutationQueue
2023-09-30 12:24:21.725936+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] pauseMutations()
2023-09-30 12:24:21.725950+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] stopSyncingToCloud(_:)
2023-09-30 12:24:21.725984+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] Notifying: receivedStop((Function))
2023-09-30 12:24:21.726027+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] resolve(stopped, receivedStop((Function))) -> stopping((Function))
2023-09-30 12:24:21.726059+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] New state: stopping((Function))
2023-09-30 12:24:21.726121+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] respond(to:): stopping((Function))
2023-09-30 12:24:21.726136+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] doStop(completion:)
2023-09-30 12:24:21.726150+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] doStopWithoutNotifyingStateMachine()
2023-09-30 12:24:21.726185+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] Notifying: doneStopping
2023-09-30 12:24:21.726220+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] resolve(stopping((Function)), doneStopping) -> stopped
2023-09-30 12:24:21.72pe":"kinderzimmer"},{"id":"kueche","active":true,"name":"Küche","type":"kueche"},{"id":"schlafzimmer","active":true,"name":"Schlafzimmer","type":"schlafzimmer"},{"id":"speisekammer","active":true,"name":"Speisekammer","type":"speisekammer"},{"id":"wc","active":false,"name":"WC","type":"wc"},{"id":"wohnzimmer","active":true,"name":"Wohnzimmer","type":"wohnzimmer"}]',
  "updatedAt" = '2023-09-30T10:22:25.051Z'
where "identityId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
6244+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] New state: stopped
2023-09-30 12:24:21.726524+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] Notifying: pausedMutationQueue(AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.726574+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] resolve(pausingMutationQueue, pausedMutationQueue(AWSDataStorePlugin.SQLiteStorageEngineAdapter)) -> clearingStateOutgoingMutations(AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.726606+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] New state: clearingStateOutgoingMutations(AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.726894+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] respond(to:): stopped
2023-09-30 12:24:21.726945+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): clearingStateOutgoingMutations(AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.726961+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] clearStateOutgoingMutations(storageAdapter:)
2023-09-30 12:24:21.735269+0200 BeTidy[637:65020] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."createdAt" as "createdAt", "root"."graphQLFilterJSON" as "graphQLFilterJSON",
  "root"."inProcess" as "inProcess", "root"."json" as "json", "root"."modelId" as "modelId",
  "root"."modelName" as "modelName", "root"."mutationType" as "mutationType", "root"."version" as "version"
from "MutationEvent" as "root"
where 1 = 1
  and "root"."inProcess" = 1
order by "root"."createdAt" asc
2023-09-30 12:24:21.735419+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."identityId" as "identityId", "root"."createdAt" as "createdAt", "root"."dataPrivacy" as "dataPrivacy",
  "root"."holidays" as "holidays", "root"."profiles" as "profiles", "root"."rooms" as "rooms",
  "root"."updatedAt" as "updatedAt"
from "Guest" as "root"
where 1 = 1
  and "root"."identityId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
2023-09-30 12:24:21.735523+0200 BeTidy[637:65020] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."createdAt" as "createdAt", "root"."graphQLFilterJSON" as "graphQLFilterJSON",
  "root"."inProcess" as "inProcess", "root"."json" as "json", "root"."modelId" as "modelId",
  "root"."modelName" as "modelName", "root"."mutationType" as "mutationType", "root"."version" as "version"
from "MutationEvent" as "root"
where 1 = 1
  and "root"."inProcess" = 1
order by "root"."createdAt" asc
2023-09-30 12:24:21.735728+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] Notifying: clearedStateOutgoingMutations(<AWSAPIPlugin.AWSAPIPlugin: 0x2831d4e40>, AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.735773+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."identityId" as "identityId", "root"."createdAt" as "createdAt", "root"."dataPrivacy" as "dataPrivacy",
  "root"."holidays" as "holidays", "root"."profiles" as "profiles", "root"."rooms" as "rooms",
  "root"."updatedAt" as "updatedAt"
from "Guest" as "root"
where 1 = 1
  and "root"."identityId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
2023-09-30 12:24:21.735859+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] resolve(clearingStateOutgoingMutations(AWSDataStorePlugin.SQLiteStorageEngineAdapter), clearedStateOutgoingMutations(<AWSAPIPlugin.AWSAPIPlugin: 0x2831d4e40>, AWSDataStorePlugin.SQLiteStorageEngineAdapter)) -> initializingSubscriptions(<AWSAPIPlugin.AWSAPIPlugin: 0x2831d4e40>, AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.735934+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] New state: initializingSubscriptions(<AWSAPIPlugin.AWSAPIPlugin: 0x2831d4e40>, AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.736557+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): initializingSubscriptions(<AWSAPIPlugin.AWSAPIPlugin: 0x2831d4e40>, AWSDataStorePlugin.SQLiteStorageEngineAdapter)
2023-09-30 12:24:21.736737+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] [InitializeSubscription] initializeSubscriptions(api:storageAdapter:)
2023-09-30 12:24:21.737286+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.737622+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.737641+0200 BeTidy[637:65023] [DataStoreStorageEngine] save(_:modelSchema:condition:eagerLoad:completion:) syncing mutation for Guest(identityId: "e537bceb-64ce-4963-922f-6868ce10056e", dataPrivacy: "30.09.2023 12:21/1.0", rooms: Optional("[{\"id\":\"badezimmer\",\"active\":true,\"name\":\"Badezimmer3\",\"type\":\"badezimmer\"},{\"id\":\"buero\",\"active\":true,\"name\":\"Büro\",\"type\":\"buero\"},{\"id\":\"dachboden\",\"active\":false,\"name\":\"Dachboden\",\"type\":\"dachboden\"},{\"id\":\"esszimmer\",\"active\":false,\"name\":\"Esszimmer\",\"type\":\"esszimmer\"},{\"id\":\"flur\",\"active\":true,\"name\":\"Flur\",\"type\":\"flur\"},{\"id\":\"garage\",\"active\":false,\"name\":\"Garage\",\"type\":\"garage\"},{\"id\":\"garten_outdoor\",\"active\":false,\"name\":\"Garten \\/ Outdoor\",\"type\":\"garten_outdoor\"},{\"id\":\"keller\",\"active\":true,\"name\":\"Keller\",\"type\":\"keller\"},{\"id\":\"kinderzimmer\",\"active\":true,\"name\":\"Kinderzimmer\",\"type\":\"kinderzimmer\"},{\"id\":\"kueche\",\"active\":true,\"name\":\"Küche\",\"type\":\"kueche\"},{\"id\":\"schlafzimmer\",\"active\":true,\"name\":\"Schlafzimmer\",\"type\":\"schlafzimmer\"},{\"id\":\"speisekammer\",\"active\":true,\"name\":\"Speisekammer\",\"type\":\"speisekammer\"},{\"id\":\"wc\",\"active\":false,\"name\":\"WC\",\"type\":\"wc\"},{\"id\":\"wohnzimmer\",\"active\":true,\"name\":\"Wohnzimmer\",\"type\":\"wohnzimmer\"}]"), profiles: Optional("[{\"id\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"notificationActive\":false,\"active\":true,\"limited\":false}]"), holidays: nil, createdAt: Optional(Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:21:29 +0000)), updatedAt: Optional(Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:22:25 +0000)))
2023-09-30 12:24:21.737819+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.737904+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.738058+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.738304+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.738267+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.738370+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.738628+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.738926+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received subscription: PassthroughSubject
2023-09-30 12:24:21.739150+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink reconciliationQueues User 1
2023-09-30 12:24:21.739189+0200 BeTidy[637:65023] [DataStoreAWSMutationDatabaseAdapter] submit(mutationEvent:completion:): MutationEvent(id: "6AD261F5-728A-4A68-A04C-4823EDEF251B", modelId: "e537bceb-64ce-4963-922f-6868ce10056e", modelName: "Guest", json: "{\"createdAt\":\"2023-09-30T10:21:29.865Z\",\"dataPrivacy\":\"30.09.2023 12:21\\/1.0\",\"identityId\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"profiles\":\"[{\\\"id\\\":\\\"e537bceb-64ce-4963-922f-6868ce10056e\\\",\\\"notificationActive\\\":false,\\\"active\\\":true,\\\"limited\\\":false}]\",\"rooms\":\"[{\\\"id\\\":\\\"badezimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Badezimmer3\\\",\\\"type\\\":\\\"badezimmer\\\"},{\\\"id\\\":\\\"buero\\\",\\\"active\\\":true,\\\"name\\\":\\\"Büro\\\",\\\"type\\\":\\\"buero\\\"},{\\\"id\\\":\\\"dachboden\\\",\\\"active\\\":false,\\\"name\\\":\\\"Dachboden\\\",\\\"type\\\":\\\"dachboden\\\"},{\\\"id\\\":\\\"esszimmer\\\",\\\"active\\\":false,\\\"name\\\":\\\"Esszimmer\\\",\\\"type\\\":\\\"esszimmer\\\"},{\\\"id\\\":\\\"flur\\\",\\\"active\\\":true,\\\"name\\\":\\\"Flur\\\",\\\"type\\\":\\\"flur\\\"},{\\\"id\\\":\\\"garage\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garage\\\",\\\"type\\\":\\\"garage\\\"},{\\\"id\\\":\\\"garten_outdoor\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garten \\\\\\/ Outdoor\\\",\\\"type\\\":\\\"garten_outdoor\\\"},{\\\"id\\\":\\\"keller\\\",\\\"active\\\":true,\\\"name\\\":\\\"Keller\\\",\\\"type\\\":\\\"keller\\\"},{\\\"id\\\":\\\"kinderzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Kinderzimmer\\\",\\\"type\\\":\\\"kinderzimmer\\\"},{\\\"id\\\":\\\"kueche\\\",\\\"active\\\":true,\\\"name\\\":\\\"Küche\\\",\\\"type\\\":\\\"kueche\\\"},{\\\"id\\\":\\\"schlafzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Schlafzimmer\\\",\\\"type\\\":\\\"schlafzimmer\\\"},{\\\"id\\\":\\\"speisekammer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Speisekammer\\\",\\\"type\\\":\\\"speisekammer\\\"},{\\\"id\\\":\\\"wc\\\",\\\"active\\\":false,\\\"name\\\":\\\"WC\\\",\\\"type\\\":\\\"wc\\\"},{\\\"id\\\":\\\"wohnzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Wohnzimmer\\\",\\\"type\\\":\\\"wohnzimmer\\\"}]\",\"updatedAt\":\"2023-09-30T10:22:25.051Z\"}", mutationType: "update", createdAt: Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:24:21 +0000), version: nil, inProcess: false, graphQLFilterJSON: nil)
2023-09-30 12:24:21.739224+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.739272+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink done reconciliationQueues User 1
2023-09-30 12:24:21.739436+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.739574+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.739611+0200 BeTidy[2023-09-30 12:24:21.739750+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.739817+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.739898+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.739953+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.740045+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.740112+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.740204+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received subscription: PassthroughSubject
2023-09-30 12:24:21.740280+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink reconciliationQueues Guest 2
2023-09-30 12:24:21.740335+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink done reconciliationQueues Guest 2
2023-09-30 12:24:21.740439+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.740499+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.740573+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.740539+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.740631+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.740709+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.740825+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.740933+0200 BeTidy[637:65029] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [9B02CD2F-D536-4D09-8688-AFCC0B4BE5C1] - Try [1/1]
2023-09-30 12:24:21.741008+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."deleted" as "deleted", "root"."lastChangedAt" as "lastChangedAt",
  "root"."version" as "version"
from "MutationSyncMetadata" as "root"
where 1 = 1
  and (
    "root"."id" = 'Guest|e537bceb-64ce-4963-922f-6868ce10056e'
  )
2023-09-30 12:24:21.741177+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."deleted" as "deleted", "root"."lastChangedAt" as "lastChangedAt",
  "root"."version" as "version"
from "MutationSyncMetadata" as "root"
where 1 = 1
  and (
    "root"."id" = 'Guest|e537bceb-64ce-4963-922f-6868ce10056e'
  )
2023-09-30 12:24:21.741346+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.740937+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.744213+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.741594+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [2D7F64C4-3963-4F1B-A210-4CA8213CB324] - Try [1/1]
2023-09-30 12:24:21.744444+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.744615+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.745106+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.742319+0200 BeTidy[637:65029] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.745337+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received subscription: PassthroughSubject
2023-09-30 12:24:21.746458+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.745631+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.746503+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink reconciliationQueues TaskHistory 3
2023-09-30 12:24:21.746229+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."createdAt" as "createdAt", "root"."graphQLFilterJSON" as "graphQLFilterJSON",
  "root"."inProcess" as "inProcess", "root"."json" as "json", "root"."modelId" as "modelId",
  "root"."modelName" as "modelName", "root"."mutationType" as "mutationType", "root"."version" as "version"
from "MutationEvent" as "root"
where 1 = 1
  and (
    (
      (
        "root"."modelId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
        and "root"."modelName" = 'Guest'
      )
    )
    and (
      "root"."inProcess" = 0
      or "root"."inProcess" is null
    )
  )
order by "root"."createdAt" asc
2023-09-30 12:24:21.746615+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink done reconciliationQueues TaskHistory 3
2023-09-30 12:24:21.747064+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.746687+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.747135+0200 BeTidy[637:65029] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [BCBFB0D7-1A2A-4AC8-9897-26522882457B] - Try [1/1]
2023-09-30 12:24:21.747064+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."createdAt" as "createdAt", "root"."graphQLFilterJSON" as "graphQLFilterJSON",
  "root"."inProcess" as "inProcess", "root"."json" as "json", "root"."modelId" as "modelId",
  "root"."modelName" as "modelName", "root"."mutationType" as "mutationType", "root"."version" as "version"
from "MutationEvent" as "root"
where 1 = 1
  and (
    (
      (
        "root"."modelId" = 'e537bceb-64ce-4963-922f-6868ce10056e'
        and "root"."modelName" = 'Guest'
      )
    )
    and (
      "root"."inProcess" = 0
      or "root"."inProcess" is null
    )
  )
order by "root"."createdAt" asc
2023-09-30 12:24:21.747276+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.747477+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.747163+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.747622+0200 BeTidy[637:65023] [DataStoreAWSMutationDatabaseAdapter] disposition(for:given:) no local events, saving candidate
2023-09-30 12:24:21.748286+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.748908+0200 BeTidy[637:65023] [DataStoreAWSMutationDatabaseAdapter] resolve(candidate:localEvents:per:storageAdapter:completionPromise:) disposition saveCandidate
2023-09-30 12:24:21.748982+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.749078+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.749118+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.749147+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.749164+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.749231+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.749259+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.749279+0200 BeTidy[637:65023] [DataStoreAWSMutationDatabaseAdapter] save(mutationEvent:storageAdapter:completionPromise:) mutationEvent: MutationEvent(id: "6AD261F5-728A-4A68-A04C-4823EDEF251B", modelId: "e537bceb-64ce-4963-922f-6868ce10056e", modelName: "Guest", json: "{\"createdAt\":\"2023-09-30T10:2023-09-30 12:24:21.749380+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
21:29.865Z\",\"dataPrivacy\":\"30.09.2023 12:21\\/1.0\",\"identityId\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"profiles\":\"[{\\\"id\\\":\\\"e537bceb-64ce-4963-922f-6868ce10056e\\\",\\\"notificationActive\\\":false,\\\"active\\\":true,\\\"limited\\\":false}]\",\"rooms\":\"[{\\\"id\\\":\\\"badezimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Badezimmer3\\\",\\\"type\\\":\\\"badezimmer\\\"},{\\\"id\\\":\\\"buero\\\",\\\"active\\\":true,\\\"name\\\":\\\"Büro\\\",\\\"type\\\":\\\"buero\\\"},{\\\"id\\\":\\\"dachboden\\\",\\\"active\\\":false,\\\"name\\\":\\\"Dachboden\\\",\\\"type\\\":\\\"dachboden\\\"},{\\\"id\\\":\\\"esszimmer\\\",\\\"active\\\":false,\\\"name\\\":\\\"Esszimmer\\\",\\\"type\\\":\\\"esszimmer\\\"},{\\\"id\\\":\\\"flur\\\",\\\"active\\\":true,\\\"name\\\":\\\"Flur\\\",\\\"type\\\":\\\"flur\\\"},{\\\"id\\\":\\\"garage\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garage\\\",\\\"type\\\":\\\"garage\\\"},{\\\"id\\\":\\\"garten_outdoor\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garten \\\\\\/ Outdoor\\\",\\\"type\\\":\\\"garten_outdoor\\\"},{\\\"id\\\":\\\"keller\\\",\\\"active\\\":true,\\\"name\\\":\\\"Keller\\\",\\\"type\\\":\\\"keller\\\"},{\\\"id\\\":\\\"kinderzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Kinderzimmer\\\",\\\"type\\\":\\\"kinderzimmer\\\"},{\\\"id\\\":\\\"kueche\\\",\\\"active\\\":true,\\\"name\\\":\\\"Küche\\\",\\\"type\\\":\\\"kueche\\\"},{\\\"id\\\":\\\"schlafzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Schlafzimmer\\\",\\\"type\\\":\\\"schlafzimmer\\\"},{\\\"id\\\":\\\"speisekammer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Speisekammer\\\",\\\"type\\\":\\\"speisekammer\\\"},{\\\"id\\\":\\\"wc\\\",\\\"active\\\":false,\\\"name\\\":\\\"WC\\\",\\\"type\\\":\\\"wc\\\"},{\\\"id\\\":\\\"wohnzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Wohnzimmer\\\",\\\"type\\\":\\\"wohnzimmer\\\"}]\",\"updatedAt\":\"2023-09-30T10:22:25.051Z\"}", mutationType: "update", createdAt: Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:24:21 +0000), version: Optional(4), inProcess: false, graphQLFilterJSON: nil)
2023-09-30 12:24:21.749332+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.749483+0200 BeTidy[637:65103] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [92082C07-3A71-4554-9440-7FB02FAF7C9A] - Try [1/1]
2023-09-30 12:24:21.749411+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.749594+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received subscription: PassthroughSubject
2023-09-30 12:24:21.749642+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink reconciliationQueues UserProject 4
2023-09-30 12:24:21.749685+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink done reconciliationQueues UserProject 4
2023-09-30 12:24:21.749695+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.749755+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.749769+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.749880+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.749924+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select count("id") from "MutationEvent" where "id" = '6AD261F5-728A-4A68-A04C-4823EDEF251B'
2023-09-30 12:24:21.749944+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.749988+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.750036+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.750072+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.750129+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received subscription: PassthroughSubject
2023-09-30 12:24:21.750173+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink reconciliationQueues UserTask 5
2023-09-30 12:24:21.750209+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink done reconciliationQueues UserTask 5
2023-09-30 12:24:21.750334+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [CF973EC1-FA1E-4026-970F-AF4327C093A2] - Try [1/1]
2023-09-30 12:24:21.750350+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] insert into "MutationEvent" ("id", "createdAt", "graphQLFilterJSON", "inProcess", "json", "modelId", "modelName", "mutationType", "version")
values ('6AD261F5-728A-4A68-A04C-4823EDEF251B', '2023-09-30T10:24:21.739Z', NULL, 0, '{"createdAt":"2023-09-30T10:21:29.865Z","dataPrivacy":"30.09.2023 12:21\/1.0","identityId":"e537bceb-64ce-4963-922f-6868ce10056e","profiles":"[{\"id\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"notificationActive\":false,\"active\":true,\"limited\":false}]","rooms":"[{\"id\":\"badezimmer\",\"active\":true,\"name\":\"Badezimmer3\",\"type\":\"badezimmer\"},{\"id\":\"buero\",\"active\":true,\"name\":\"Büro\",\"type\":\"buero\"},{\"id\":\"dachboden\",\"active\":false,\"name\":\"Dachboden\",\"type\":\"dachboden\"},{\"id\":\"esszimmer\",\2023-09-30 12:24:21.750610+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.750678+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
"active\":false,\"name\":\"Esszimmer\",\"type\":\"esszimmer\"},{\"id\":\"flur\",\"active\":true,\"name\":\"Flur\",\"type\":\"flur\"},{\"id\":\"garage\",\"active\":false,\"name\":\"Garage\",\"type\":\"garage\"},{\"id\":\"garten_outdoor\",\"active\":false,\"name\":\"Garten \\\/ Outdoor\",\"type\":\"garten_outdoor\"},{\"id\":\"keller\",\"active\":true,\"name\":\"Keller\",\"type\":\"keller\"},{\"id\":\"kinderzimmer\",\"active\":true,\"name\":\"Kinderzimmer\",\"type\":\"kinderzimmer\"},{\"id\":\"kueche\",\"active\":true,\"name\":\"Küche\",\"type\":\"kueche\"},{\"id\":\"schlafzimmer\",\"active\":true,\"name\":\"Schlafzimmer\",\"type\":\"schlafzimmer\"},{\"id\":\"speisekammer\",\"active\":true,\"name\":\"Speisekammer\",\"type\":\"speisekammer\"},{\"id\":\"wc\",\"active\":false,\"name\":\"WC\",\"type\":\"wc\"},{\"id\":\"wohnzimmer\",\"active\":true,\"name\":\"Wohnzimmer\",\"type\":\"wohnzimmer\"}]","updatedAt":"2023-09-30T10:22:25.051Z"}', 'e537bceb-64ce-4963-922f-6868ce10056e', 'Guest', 'update', 4)
2023-09-30 12:24:21.750775+0200 BeTidy[637:65102] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.750825+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.750845+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.750867+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.750890+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.750891+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Sessi2023-09-30 12:24:21.750949+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
on exists, checking validity
2023-09-30 12:24:21.750986+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.751040+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.751076+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.751132+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received subscription: PassthroughSubject
2023-09-30 12:24:21.751173+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink reconciliationQueues GuestTask 6
2023-09-30 12:24:21.751207+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink done reconciliationQueues GuestTask 6
2023-09-30 12:24:21.751283+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.751266+0200 BeTidy[637:65018] [AuthenticationAWS2023-09-30 12:24:21.751326+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.751383+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.751416+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
AuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.751461+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.751493+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.751497+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.751540+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.751570+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.751572+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received subscription: PassthroughSubject
2023-09-30 12:24:21.751659+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [B76BFEF4-809B-40E1-ACBF-E3B651EB6ADB] - Try [1/1]
2023-09-30 12:24:21.751594+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.751702+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink reconciliationQueues GuestProject 7
2023-09-30 12:24:21.751736+0200 BeTidy[637:65020] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] Sink done reconciliationQueues GuestProject 7
2023-09-30 12:24:21.751755+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.751778+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.751816+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.751956+0200 BeTidy[637:65020] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [DA120534-318D-469B-8EBE-448AF70FA93C] - Try [1/1]
2023-09-30 12:24:21.752068+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.752158+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.752204+0200 BeTidy[637:65029] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.752325+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.752350+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.752379+0200 BeTidy[637:65029] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.752386+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.752724+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.752766+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.752841+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.752868+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.752857+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [293E3D6B-1871-4530-8E6B-227A7B750166] - Try [1/1]
2023-09-30 12:24:21.752907+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.752940+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.752962+0200 2023-09-30 12:24:21.753229+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."createdAt" as "createdAt", "root"."graphQLFilterJSON" as "graphQLFilterJSON",
  "root"."inProcess" as "inProcess", "root"."json" as "json", "root"."modelId" as "modelId",
  "root"."modelName" as "modelName", "root"."mutationType" as "mutationType", "root"."version" as "version"
from "MutationEvent" as "root"
where 1 = 1
  and "root"."id" = '6AD261F5-728A-4A68-A04C-4823EDEF251B'
2023-09-30 12:24:21.753258+0200 BeTidy[637:65102] Generated Header for request - Optional("{\"Authorization\":\"\",\"host\":\"xxxx.appsync-api.eu-central-1.amazonaws.com\"}")
2023-09-30 12:24:21.753318+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.753337+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."cBeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
reatedAt" as "createdAt", "root"."graphQLFilterJSON" as "graphQLFilterJSON",
  "root"."inProcess" as "inProcess", "root"."json" as "json", "root"."modelId" as "modelId",
  "root"."modelName" as "modelName", "root"."mutationType" as "mutationType", "root"."version" as "version"
from "MutationEvent" as "root"
where 1 = 1
  and "root"."id" = '6AD261F5-728A-4A68-A04C-4823EDEF251B'
2023-09-30 12:24:21.753478+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.753502+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.753545+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.753577+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.753599+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.753687+0200 BeTidy[637:65029] [StarscreamAdapter] connect. Connecting to url
2023-09-30 12:24:21.753985+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [F5551BAA-7698-4F0A-8141-002CBFDB1F24] - Try [1/1]
2023-09-30 12:24:21.754321+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.754392+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.754410+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.754500+0200 BeTidy[637:65023] [DataStoreAWSMutationDatabaseAdapter] save(mutationEvent:storageAdapter:completionPromise:): saved MutationEvent(id: "6AD261F5-728A-4A68-A04C-4823EDEF251B", modelId: "e537bceb-64ce-4963-922f-6868ce10056e", modelName: "Guest", json: "{\"createdAt\2023-09-30 12:24:21.754663+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
":\"2023-09-30T10:21:29.865Z\",\"dataPrivacy\":\"30.09.2023 12:21\\/1.0\",\"identityId\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"profiles\":\"[{\\\"id\\\":\\\"e537bceb-64ce-4963-922f-6868ce10056e\\\",\\\"notificationActive\\\":false,\\\"active\\\":true,\\\"limited\\\":false}]\",\"rooms\":\"[{\\\"id\\\":\\\"badezimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Badezimmer3\\\",\\\"type\\\":\\\"badezimmer\\\"},{\\\"id\\\":\\\"buero\\\",\\\"active\\\":true,\\\"name\\\":\\\"Büro\\\",\\\"type\\\":\\\"buero\\\"},{\\\"id\\\":\\\"dachboden\\\",\\\"active\\\":false,\\\"name\\\":\\\"Dachboden\\\",\\\"type\\\":\\\"dachboden\\\"},{\\\"id\\\":\\\"esszimmer\\\",\\\"active\\\":false,\\\"name\\\":\\\"Esszimmer\\\",\\\"type\\\":\\\"esszimmer\\\"},{\\\"id\\\":\\\"flur\\\",\\\"active\\\":true,\\\"name\\\":\\\"Flur\\\",\\\"type\\\":\\\"flur\\\"},{\\\"id\\\":\\\"garage\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garage\\\",\\\"type\\\":\\\"garage\\\"},{\\\"id\\\":\\\"garten_outdoor\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garten \\\\\\/ Outdoor\\\",\\\"type\\\":\\\"garten_outdoor\\\"},{\\\"id\\\":\\\"keller\\\",\\\"active\\\":true,\\\"name\\\":\\\"Keller\\\",\\\"type\\\":\\\"keller\\\"},{\\\"id\\\":\\\"kinderzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Kinderzimmer\\\",\\\"type\\\":\\\"kinderzimmer\\\"},{\\\"id\\\":\\\"kueche\\\",\\\"active\\\":true,\\\"name\\\":\\\"Küche\\\",\\\"type\\\":\\\"kueche\\\"},{\\\"id\\\":\\\"schlafzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Schlafzimmer\\\",\\\"type\\\":\\\"schlafzimmer\\\"},{\\\"id\\\":\\\"speisekammer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Speisekammer\\\",\\\"type\\\":\\\"speisekammer\\\"},{\\\"id\\\":\\\"wc\\\",\\\"active\\\":false,\\\"name\\\":\\\"WC\\\",\\\"type\\\":\\\"wc\\\"},{\\\"id\\\":\\\"wohnzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Wohnzimmer\\\",\\\"type\\\":\\\"wohnzimmer\\\"}]\",\"updatedAt\":\"2023-09-30T10:22:25.051Z\"}", mutationType: "update", createdAt: Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:24:21 +0000), version: Optional(4), inProcess: false, graphQLFilterJSON: nil)
2023-09-30 12:24:21.754808+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.754676+0200 BeTidy[637:65020] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [A6C94F92-F5C8-4D8B-8817-D751016389A2] - Try [1/1]
2023-09-30 12:24:21.754879+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.755133+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.755278+0200 BeTidy[637:65020] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [5F1AC750-EABE-460D-B079-36B3FEA3217A] - Try [1/1]
2023-09-30 12:24:21.755292+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.755569+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.755648+0200 BeTidy[637:65029] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.755827+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.755919+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.755965+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.755991+0200 BeTidy[637:65023] [DataStoreAWSMutationDatabaseAdapter] save(mutationEvent:storageAdapter:completionPromise:): invoking completionPromise with success(Amplify.MutationEvent(id: "6AD261F5-728A-4A68-A04C-4823EDEF251B", modelId: "e537bceb-64ce-4963-922f-6868ce10056e", modelName: "Guest", json: "{\"createdAt\":\"2023-09-30T10:21:29.865Z\",\"dataPrivacy\":\"30.09.2023 12:21\\/1.0\",\"identityId\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"profiles\":\"[{\\\"id\\\":\\\"e537bceb-64ce-4963-922f-6868ce10056e\\\",\\\"notificationActive\\\":false,\\\"active\\\":true,\\\"limited\\\":false}]\",\"rooms\":\"[{\\\"id\\\":\\\"badezimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Badezimmer3\\\",\\\"type\\\":\\\"badezimmer\\\"},{\\\"id\\\":\\\"buero\\\",\\\"active\\\":true,\\\"name\\\":\\\"Büro\\\",\\\"type\\\":\\\"buero\\\"},{\\\"id\\\":\\\"dachboden\\\",\\\"active\\\":false,\\\"name\\\":\\\"Dachboden\\\",\\\"type\\\":\\\"dachboden\\\"},{\\\"id\\\":\\\"esszimmer\\\",\\\"active\\\":false,\\\"name\\\":\\\"Esszimmer\\\",\\\"type\\\":\\\"esszimmer\\\"},{\\\"id\\\":\\\"flur\\\",\\\"active\\\":true,\\\"name\\\":\\\"Flur\\\",\\\"type\\\":\\\"flur\\\"},{\\\"id\\\":\\\"garage\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garage\\\",\\\"type\\\":\\\"garage\\\"},{\\\"id\\\":\\\"garten_outdoor\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garten \\\\\\/ Outdoor\\\",\\\"type\\\":\\\"garten_outdoor\\\"},{\\\"id\\\":\\\"keller\\\",\\\"active\\\":true,\\\"name\\\":\\\"Keller\\\",\\\"type\\\":\\\"keller\\\"},{\\\"id\\\":\\\"kinderzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Kinderzimmer\\\",\\\"type\\\":\\\"kinderzimmer\\\"},{\\\"id\\\":\\\"kueche\\\",\\\"active\\\":true,\\\"name\\\":\\\"Küche\\\",\\\"type\\\":\\\"kueche\\\"},{\\\"id\\\":\\\"schlafzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Schlafzimmer\\\",\\\"type\\\":\\\"schlafzimmer\\\"},{\\\"id\\\":\\\"speisekammer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Speisekammer\\\",\\\"type\\\":\\\"speisekammer\\\"},{\\\"id\\\":\\\"wc\\\",\\\"active\\\":false,\\\"name\\\":\\\"WC\\\",\\\"type\\\":\\\"wc\\\"},{\\\"id\\\":\\\"wohnzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Wohnzimmer\\\",\\\"type\\\":\\\"wohnzimmer\\\"}]\",\"updatedAt\":\"2023-09-30T10:22:25.051Z\"}", mutationType: "update", createdAt: Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:24:21 +0000), version: Optional(4), inProcess: false, graphQLFilterJSON: nil))
2023-09-30 12:24:21.756144+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.756387+0200 BeTidy[637:65020] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [A77F0A88-DDC0-4640-A687-4D31E8A941EE] - Try [1/1]
2023-09-30 12:24:21.757911+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.757991+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.758040+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.758075+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.758180+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.758215+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.758271+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.758791+0200 BeTidy[637:65029] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.759423+0200 BeTidy[637:65023] [DataStoreStorageEngine] syncMutation(of:modelSchema:mutationType:predicate:syncEngine:completion:) successfully submitted Guest to sync engine MutationEvent(id: "6AD261F5-728A-4A68-A04C-4823EDEF251B", modelId: "e537bceb-64ce-4963-922f-6868ce10056e", modelName: "Guest", json: "{\"createdAt\":\"2023-09-30T10:21:29.865Z\",\"dataPrivacy\":\"30.09.2023 12:21\\/1.0\",\"identityId\":\"e537bceb-64ce-4963-922f-6868ce10056e\",\"profiles\":\"[{\\\"id\\\":\\\"e537bceb-64ce-4963-922f-6868ce10056e\\\",\\\"notificationActive\\\":false,\\\"active\\\":true,\\\"limited\\\":false}]\",\"rooms\":\"[{\\\"id\\\":\\\"badezimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Badezimmer3\\\",\\\"type\\\":\\\"badezimmer\\\"},{\\\"id\\\":\\\"buero\\\",\\\"active\\\":true,\\\"name\\\":\\\"Büro\\\",\\\"type\\\":\\\"buero\\\"},{\\\"id\\\":\\\"dachboden\\\",\\\"active\\\":false,\\\"name\\\":\\\"Dachboden\\\",\\\"type\\\":\\\"dachboden\\\"},{\\\"id\\\":\\\"esszimmer\\\",\\\"active\\\":false,\\\"name\\\":\\\"Esszimmer\\\",\\\"type\\\":\\\"esszimmer\\\"},{\\\"id\\\":\\\"flur\\\",\\\"active\\\":true,\\\"name\\\":\\\"Flur\\\",\\\"type\\\":\\\"flur\\\"},{\\\"id\\\":\\\"garage\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garage\\\",\\\"type\\\":\\\"garage\\\"},{\\\"id\\\":\\\"garten_outdoor\\\",\\\"active\\\":false,\\\"name\\\":\\\"Garten \\\\\\/ Outdoor\\\",\\\"type\\\":\\\"garten_outdoor\\\"},{\\\"id\\\":\\\"keller\\\",\\\"active\\\":true,\\\"name\\\":\\\"Keller\\\",\\\"type\\\":\\\"keller\\\"},{\\\"id\\\":\\\"kinderzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Kinderzimmer\\\",\\\"type\\\":\\\"kinderzimmer\\\"},{\\\"id\\\":\\\"kueche\\\",\\\"active\\\":true,\\\"name\\\":\\\"Küche\\\",\\\"type\\\":\\\"kueche\\\"},{\\\"id\\\":\\\"schlafzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Schlafzimmer\\\",\\\"type\\\":\\\"schlafzimmer\\\"},{\\\"id\\\":\\\"speisekammer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Speisekammer\\\",\\\"type\\\":\\\"speisekammer\\\"},{\\\"id\\\":\\\"wc\\\",\\\"active\\\":false,\\\"name\\\":\\\"WC\\\",\\\"type\\\":\\\"wc\\\"},{\\\"id\\\":\\\"wohnzimmer\\\",\\\"active\\\":true,\\\"name\\\":\\\"Wohnzimmer\\\",\\\"type\\\":\\\"wohnzimmer\\\"}]\",\"updatedAt\":\"2023-09-30T10:22:25.051Z\"}", mutationType: "update", createdAt: Amplify.Temporal.DateTime(foundationDate: 2023-09-30 10:24:21 +0000), version: Optional(4), inProcess: false, graphQLFilterJSON: nil)
2023-09-30 12:24:21.759044+0200 BeTidy[637:65020] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [DF341803-F3FD-4A96-B56C-ECCC65ECD796] - Try [1/1]
2023-09-30 12:24:21.761607+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.762841+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.763187+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.763261+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."deleted" as "deleted", "root"."lastChangedAt" as "lastChangedAt",
  "root"."version" as "version"
from "MutationSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'Guest|e537bceb-64ce-4963-922f-6868ce10056e'
limit 1 offset 0
2023-09-30 12:24:21.763259+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.763359+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.763387+0200 BeTidy[637:65023] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."deleted" as "deleted", "root"."lastChangedAt" as "lastChangedAt",
  "root"."version" as "version"
from "MutationSyncMetadat2023-09-30 12:24:21.763463+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.763497+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
a" as "root"
where 1 = 1
  and "root"."id" = 'Guest|e537bceb-64ce-4963-922f-6868ce10056e'
limit 1 offset 0
2023-09-30 12:24:21.763519+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.763589+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.763642+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.763692+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.763723+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.763748+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.763811+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.763836+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [21A44D0F-99C0-48B5-86F6-4845A27F3B08] - Try [1/1]
2023-09-30 12:24:21.764434+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.764470+0200 BeTidy[637:65020] Generated Header for request - Optional("{\"X-Amz-Security-Token\":\"xxxx,\"content-encoding\":\"amz-1.0\",\"host\":\"xxxx.appsync-api.eu-central-1.amazonaws.com\",\"x-amz-date\":\"20230930T102421Z\"}")
2023-09-30 12:24:21.764596+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.763867+0200 BeTidy[637:65103] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [34AC8F72-40E7-48F9-84E0-520274EE0191] - Try [1/1]
2023-09-30 12:24:21.764693+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.764761+0200 BeTidy[637:65018] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.764789+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.764828+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.764860+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.764881+0200 BeTidy[637:65018] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.764911+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.765072+0200 BeTidy[637:65101] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.765100+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.765109+0200 BeTidy[637:65018] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [8396EF0B-8A6A-4EFA-93EA-70C42551B40E] - Try [1/1]
2023-09-30 12:24:21.765143+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.765173+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.765195+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.765254+0200 BeTidy[637:65101] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.765277+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.765314+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.765344+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.765365+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.765414+0200 BeTidy[637:65101] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.765437+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.765439+0200 BeTidy[637:65018] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [EE0F7CD9-589F-4523-9EDC-968BA8DB7DF8] - Try [1/1]
2023-09-30 12:24:21.765475+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.765504+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.765531+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.765581+0200 BeTidy[637:65101] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.765608+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.765644+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.765650+0200 BeTidy[637:65018] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [ACE1ADF6-8EF9-4E67-B095-E0E018D18E03] - Try [1/1]
2023-09-30 12:24:21.765672+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.765704+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.765843+0200 BeTidy[637:65018] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [167AF265-E1C3-4A47-A0FB-E12B87BB750A] - Try [1/1]
2023-09-30 12:24:21.765886+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [71662F4E-C578-4D9E-83B0-F9518ECD4C77] - Try [1/1]
2023-09-30 12:24:21.765978+0200 BeTidy[637:65103] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [175ACBEB-AD30-4F2E-9363-78F602629250] - Try [1/1]
2023-09-30 12:24:21.766483+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.767477+0200 BeTidy[637:65102] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.767605+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.768096+0200 BeTidy[637:65102] [StarscreamAdapter] connect. Connecting to url
2023-09-30 12:24:21.768833+0200 BeTidy[637:65102] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.769220+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.770028+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.770840+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connecting)
2023-09-30 12:24:21.822124+0200 BeTidy[637:65101] [StarscreamAdapter] viabilityChanged: true
2023-09-30 12:24:21.831576+0200 BeTidy[637:65101] [StarscreamAdapter] viabilityChanged: true
2023-09-30 12:24:21.892323+0200 BeTidy[637:65018] [StarscreamAdapter] websocketDidConnect: websocket has been connected.
2023-09-30 12:24:21.892518+0200 BeTidy[637:65018] [RealtimeConnectionProvider] WebsocketDidConnect, sending init message
2023-09-30 12:24:21.892654+0200 BeTidy[637:65018] [RealtimeConnectionProvider] Starting stale connection timer for 300.0s
2023-09-30 12:24:21.892906+0200 BeTidy[637:65018] [StarscreamAdapter] websocketDidReceiveMessage: - {"payload":{"errors":[{"errorType":"UnauthorizedException","message":"Valid authorization header not provided.","errorCode":401}]},"type":"connection_error"}
2023-09-30 12:24:21.893120+0200 BeTidy[637:65101] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.893264+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.893567+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.893721+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.893837+0200 BeTidy[637:65101] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.894135+0200 BeTidy[637:65018] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:21.894329+0200 BeTidy[637:65018] [RealtimeConnectionProvider] received error
2023-09-30 12:24:21.894722+0200 BeTidy[637:65101] [StarscreamAdapter] socket.write - {"type":"connection_init"}
2023-09-30 12:24:21.894802+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.895845+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.896840+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.896966+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [293E3D6B-1871-4530-8E6B-227A7B750166] - Failed
2023-09-30 12:24:21.896968+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.897057+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `TaskHistory` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.897452+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.897777+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: failure(DataStoreError: Subscription item event failed with error: Unauthorized
Caused by:
APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized)
2023-09-30 12:24:21.897800+0200 BeTidy[637:65103] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.897855+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.898439+0200 BeTidy[637:65101] [DataStoreAWSModelReconciliationQueue] [InitializeSubscription.3] AWSModelReconciliationQueue determined unauthorized TaskHistory
2023-09-30 12:24:21.898419+0200 BeTidy[637:65103] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [DA120534-318D-469B-8EBE-448AF70FA93C] - Failed
2023-09-30 12:24:21.898558+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `TaskHistory` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.898663+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.898928+0200 BeTidy[637:65103] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.899036+0200 BeTidy[637:65018] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.4] subscription disconnected [TaskHistory] reason: [disconnected(modelName: "TaskHistory", reason: AWSDataStorePlugin.ModelConnectionDisconnectedReason.unauthorized)]
2023-09-30 12:24:21.899656+0200 BeTidy[637:65102] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.901081+0200 BeTidy[637:65103] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [DF341803-F3FD-4A96-B56C-ECCC65ECD796] - Failed
2023-09-30 12:24:21.901134+0200 BeTidy[637:65018] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] 1/7 initialized
2023-09-30 12:24:21.900722+0200 BeTidy[637:65023] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.901237+0200 BeTidy[637:65102] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [A6C94F92-F5C8-4D8B-8817-D751016389A2] - Failed
2023-09-30 12:24:21.901233+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `UserTask` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.901439+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.902813+0200 BeTidy[637:65023] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [2D7F64C4-3963-4F1B-A210-4CA8213CB324] - Failed
2023-09-30 12:24:21.902867+0200 BeTidy[637:65102] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `UserProject` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.903010+0200 BeTidy[637:65023] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `User` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.902330+0200 BeTidy[637:65107] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.903415+0200 BeTidy[637:65107] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [F5551BAA-7698-4F0A-8141-002CBFDB1F24] - Failed
2023-09-30 12:24:21.903494+0200 BeTidy[637:65107] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `TaskHistory` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.903549+0200 BeTidy[637:65023] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: failure(DataStoreError: Subscription item event failed with error: Unauthorized
Caused by:
APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized)
2023-09-30 12:24:21.903117+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: failure(DataStoreError: Subscription item event failed with error: Unauthorized
Caused by:
APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized)
2023-09-30 12:24:21.903212+0200 BeTidy[637:65102] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: failure(DataStoreError: Subscription item event failed with error: Unauthorized
Caused by:
APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized)
2023-09-30 12:24:21.903208+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.903680+0200 BeTidy[637:65023] [DataStoreAWSModelReconciliationQueue] [InitializeSubscription.3] AWSModelReconciliationQueue determined unauthorized User
2023-09-30 12:24:21.903934+0200 BeTidy[637:65105] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event2023-09-30 12:24:21.905920+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
 failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.906270+0200 BeTidy[637:65105] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [21A44D0F-99C0-48B5-86F6-4845A27F3B08] - Failed
2023-09-30 12:24:21.906388+0200 BeTidy[637:65105] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `UserTask` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.906449+0200 BeTidy[637:65023] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.906454+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.906531+0200 BeTidy[637:65023] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [5F1AC750-EABE-460D-B079-36B3FEA3217A] - Failed
2023-09-30 12:24:21.906607+0200 BeTidy[637:65023] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `UserProject` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.905571+0200 BeTidy[637:65102] [DataStoreAWSModelReconciliationQueue] [InitializeSubscription.3] AWSModelReconciliationQueue determined unauthorized UserProject
2023-09-30 12:24:21.906773+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.905902+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.4] subscription disconnected [User] reason: [disconnected(modelName: "User", reason: AWSDataStorePlugin.ModelConnectionDisconnectedReason.unauthorized)]
2023-09-30 12:24:21.909307+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] 2/7 initialized
2023-09-30 12:24:21.905564+0200 BeTidy[637:65103] [DataStoreAWSModelReconciliationQueue] [InitializeSubscription.3] AWSModelReconciliationQueue determined unauthorized UserTask
2023-09-30 12:24:21.907253+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.907439+0200 BeTidy[637:65107] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.909679+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.4] subscription disconnected [UserProject] reason: [disconnected(modelName: "UserProject", reason: AWSDataStorePlugin.ModelConnectionDisconnectedReason.unauthorized)]
2023-09-30 12:24:21.909699+0200 BeTidy[637:65020] ConnectionProviderError.unauthorized
2023-09-30 12:24:21.911698+0200 BeTidy[637:65101] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [34AC8F72-40E7-48F9-84E0-520274EE0191] - Failed
2023-09-30 12:24:21.911729+0200 BeTidy[637:65107] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [BCBFB0D7-1A2A-4AC8-9897-26522882457B] - Failed
2023-09-30 12:24:21.910232+0200 BeTidy[637:65108] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.912222+0200 BeTidy[637:65107] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `User` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.912255+0200 BeTidy[637:65020] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:21.911846+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `UserTask` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.912407+0200 BeTidy[637:65020] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:21.912521+0200 BeTidy[637:65108] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [9B02CD2F-D536-4D09-8688-AFCC0B4BE5C1] - Failed
2023-09-30 12:24:21.913898+0200 BeTidy[637:65108] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `User` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.911807+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] 3/7 initialized
2023-09-30 12:24:21.912562+0200 BeTidy[637:65107] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] APIError: Subscription item event failed with error: Unauthorized
Caused by:
unauthorized
2023-09-30 12:24:21.914142+0200 BeTidy[637:65107] [APIRetryableGraphQLSubscriptionOperation<MutationSync<AnyModel>>] [A77F0A88-DDC0-4640-A687-4D31E8A941EE] - Failed
2023-09-30 12:24:21.914245+0200 BeTidy[637:65107] [DataStoreIncomingAsyncSubscriptionEventPublisher] [InitializeSubscription.1] API.subscribe failed for `UserProject` error: Subscription item event failed with error: Unauthorized
2023-09-30 12:24:21.914319+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.4] subscription disconnected [UserTask] reason: [disconnected(modelName: "UserTask", reason: AWSDataStorePlugin.ModelConnectionDisconnectedReason.unauthorized)]
2023-09-30 12:24:21.914466+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] 4/7 initialized
2023-09-30 12:24:21.919699+0200 BeTidy[637:65029] [StarscreamAdapter] websocketDidConnect: websocket has been connected.
2023-09-30 12:24:21.919852+0200 BeTidy[637:65029] [RealtimeConnectionProvider] WebsocketDidConnect, sending init message
2023-09-30 12:24:21.919936+0200 BeTidy[637:65029] [RealtimeConnectionProvider] Starting stale connection timer for 300.0s
2023-09-30 12:24:21.920241+0200 BeTidy[637:65107] [APIAPICategory] Message type does not need signing - connectionInit("connection_init")
2023-09-30 12:24:21.920635+0200 BeTidy[637:65107] [StarscreamAdapter] socket.write - {"type":"connection_init"}
2023-09-30 12:24:21.935096+0200 BeTidy[637:65107] [StarscreamAdapter] websocketDidReceiveMessage: - {"type":"connection_ack","payload":{"connectionTimeoutMs":300000}}
2023-09-30 12:24:21.935889+0200 BeTidy[637:65107] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:21.936115+0200 BeTidy[637:65107] [RealtimeConnectionProvider] received connectionAck
2023-09-30 12:24:21.936306+0200 BeTidy[637:65107] [StarscreamAdapter] websocketDidReceiveMessage: - {"type":"ka"}
2023-09-30 12:24:21.936605+0200 BeTidy[637:65107] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:21.936657+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription 3345A2F5-BAF6-4B26-96D5-8B6E2A48C504.
2023-09-30 12:24:21.936799+0200 BeTidy[637:65107] [RealtimeConnectionProvider] received keepAlive
2023-09-30 12:24:21.936953+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription D0B66113-5449-4ECC-8B24-63D1C89908A0.
2023-09-30 12:24:21.937094+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription 180BFB57-BE52-4535-9EEC-4B4375C5E022.
2023-09-30 12:24:21.937236+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription 0DAF2382-DE41-498A-B551-FFDB78AE7BAC.
2023-09-30 12:24:21.937375+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription 6E97ED11-1D1F-4136-853C-4044A70583B1.
2023-09-30 12:24:21.937492+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription 25C4F391-B669-4E54-9E7A-E0BE766713DB.
2023-09-30 12:24:21.937599+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.937625+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription A6B94FC8-DBDB-4463-906D-3DEEA454328A.
2023-09-30 12:24:21.937741+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.938001+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription 70B024E1-4C21-41C5-995D-CFB17B597954.
2023-09-30 12:24:21.938106+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.938153+0200 BeTidy[637:65029] [AppSyncSubscriptionConnection]: Connection connected, start subscription C27A5FA9-8734-4992-8870-11EC2F830A00.
2023-09-30 12:24:21.938297+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.938398+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.941155+0200 BeTidy[637:65029] [StarscreamAdapter] socket.write - {"id":"3345A2F5-BAF6-4B26-96D5-8B6E2A48C504","payload":{"data":"{\"query\":\"subscription OnUpdateGuest {\\n  onUpdateGuest {\\n    identityId\\n    createdAt\\n    dataPrivacy\\n    holidays\\n    profiles\\n    rooms\\n    updatedAt\\n    __typename\\n    _version\\n    _deleted\\n    _lastChangedAt\\n  }\\n}\"}","extensions":{"authorization":{xxxx","content-encoding":"amz-1.0","host":"xxxx.appsync-api.eu-central-1.amazonaws.com","x-amz-date":"20230930T102421Z"}}},"type":"start"}
2023-09-30 12:24:21.941557+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.941782+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.941922+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.944491+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.946783+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.946806+0200 BeTidy[637:65103] [StarscreamAdapter] socket.write - {"id":"D0B66113-5449-4ECC-8B24-63D1C89908A0","payload":{"data":"{\"query\":\"subscription OnCreateGuestTask {\\n  onCreateGuestTask {\\n    id\\n    active\\n    assigned\\n    createdAt\\n    creator\\n    description\\n    effort\\n    finishedDate\\n    identityId\\n    important\\n    intervalCount\\n    intervalUnit\\n    lastHistoryId\\n    lastSkipDate\\n    lastTodoDate\\n    projectId\\n    roomId\\n    templateId\\n    title\\n    todoDate\\n    type\\n    updatedAt\\n    __typename\\n    _version\\n    _deleted\\n    _lastChangedAt\\n  }\\n}\"}","extensions":{"authorization":{"xxxx","content-encoding":"amz-1.0","host":"xxxx.appsync-api.eu-central-1.amazonaws.com","x-amz-date":"20230930T102421Z"}}},"type":"start"}
2023-09-30 12:24:21.947226+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.948245+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.948370+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.948439+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.950138+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.950208+0200 BeTidy[637:65020] [StarscreamAdapter] socket.write - {"id":"180BFB57-BE52-4535-9EEC-4B4375C5E022","payload":{"data":"{\"query\":\"subscription OnCreateGuestProject {\\n  onCreateGuestProject {\\n    id\\n    afterImage\\n    beforeImage\\n    createdAt\\n    creator\\n    identityId\\n    roomId\\n    startDate\\n    templateId\\n    title\\n    type\\n    updatedAt\\n    __typename\\n    _version\\n    _deleted\\n    _lastChangedAt\\n  }\\n}\"}","extensions":{"authorization":{xxxx","content-encoding":"amz-1.0","host":"xxxx.appsync-api.eu-central-1.amazonaws.com","x-amz-date":"20230930T102421Z"}}},"type":"start"}
2023-09-30 12:24:21.950253+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.950550+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.950656+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.950722+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.952343+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.952353+0200 BeTidy[637:65103] [StarscreamAdapter] socket.write - {"id":"0DAF2382-DE41-498A-B551-FFDB78AE7BAC","payload":{"data":"{\"query\":\"subscription OnUpdateGuestTask {\\n  onUpdateGuestTask {\\n    id\\n    active\\n    assigned\\n    createdAt\\n    creator\\n    description\\n    effort\\n    finishedDate\\n    identityId\\n    important\\n    intervalCount\\n    intervalUnit\\n    lastHistoryId\\n    lastSkipDate\\n    lastTodoDate\\n    projectId\\n    roomId\\n    templateId\\n    title\\n    todoDate\\n    type\\n    updatedAt\\n    __typename\\n    _version\\n    _deleted\\n    _lastChangedAt\\n  }\\n}\"}","extensions":{"authorization":{"xxxx","content-encoding":"amz-1.0","host":"xxxx.appsync-api.eu-central-1.amazonaws.com","x-amz-date":"20230930T102421Z"}}},"type":"start"}
2023-09-30 12:24:21.952469+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.952932+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.953033+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.953551+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.954839+0200 BeTidy[637:65020] [StarscreamAdapter] socket.write - {"id":"6E97ED11-1D1F-4136-853C-4044A70583B1","payload":{"data":"{\"query\":\"subscription OnDeleteGuest {\\n  onDeleteGuest {\\n    identityId\\n    createdAt\\n    dataPrivacy\\n    holidays\\n    profiles\\n    rooms\\n    updatedAt\\n    __typename\\n    _version\\n    _deleted\\n    _lastChangedAt\\n  }\\n}\"}","extensions":{"authorization":{xxxx","content-encoding":"amz-1.0","host":"xxxx.appsync-api.eu-central-1.amazonaws.com","x-amz-date":"20230930T102421Z"}}},"type":"start"}
2023-09-30 12:24:21.955950+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.956013+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.956052+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.956076+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.956699+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.956684+0200 BeTidy[637:65020] [StarscreamAdapter] socket.write - {"id":"25C4F391-B669-4E54-9E7A-E0BE766713DB","payload":{"data":"{\"query\":\"subscription OnDeleteGuestTask {\\n  onDeleteGuestTask {\\n    id\\n    active\\n    assigned\\n    createdAt\\n    creator\\n    description\\n    effort\\n    finishedDate\\n    identityId\\n    important\\n    intervalCount\\n    intervalUnit\\n    lastHistoryId\\n    lastSkipDate\\n    lastTodoDate\\n    projectId\\n    roomId\\n    templateId\\n    title\\n    todoDate\\n    type\\n    updatedAt\\n    __typename\\n    _version\\n    _deleted\\n    _lastChangedAt\\n  }\\n}\"}","extensions":{"authorization":{xxxx 12:24:21.956732+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.956778+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.956811+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
12:24:21.956850+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
-date":"20230930T102421Z"}}},"type":"start"}
2023-09-30 12:24:21.957561+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.957590+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.957631+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.957660+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.957681+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:21.958097+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:21.958124+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:21.958160+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:21.958188+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:21.958209+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.091701+0200 BeTidy[637:65020] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"C27A5FA9-8734-4992-8870-11EC2F830A00","type":"start_ack"}
2023-09-30 12:24:22.092147+0200 BeTidy[637:65020] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.091540+0200 BeTidy[637:65029] [tcp] tcp_input [C11.1.1:2] flags=[R.] seq=1629419194, ack=2120869141, win=944 state=ESTABLISHED rcv_nxt=1629419194, snd_una=2120869141
2023-09-30 12:24:22.092428+0200 BeTidy[637:65020] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"6E97ED11-1D1F-4136-853C-4044A70583B1","type":"start_ack"}
2023-09-30 12:24:22.092721+0200 BeTidy[637:65020] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.093109+0200 BeTidy[637:65020] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"A6B94FC8-DBDB-4463-906D-3DEEA454328A","type":"start_ack"}
2023-09-30 12:24:22.093382+0200 BeTidy[637:65020] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.093569+0200 BeTidy[637:65020] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"3345A2F5-BAF6-4B26-96D5-8B6E2A48C504","type":"start_ack"}
2023-09-30 12:24:22.094176+0200 BeTidy[637:65107] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.094492+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.095034+0200 BeTidy[637:65020] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.095209+0200 BeTidy[637:65020] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"0DAF2382-DE41-498A-B551-FFDB78AE7BAC","type":"start_ack"}
2023-09-30 12:24:22.095401+0200 BeTidy[637:65020] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.095544+0200 BeTidy[637:65020] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"D0B66113-5449-4ECC-8B24-63D1C89908A0","type":"start_ack"}
2023-09-30 12:24:22.096024+0200 BeTidy[637:65102] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.095851+0200 BeTidy[637:65018] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.096577+0200 BeTidy[637:65020] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.096748+0200 BeTidy[637:65020] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"180BFB57-BE52-4535-9EEC-4B4375C5E022","type":"start_ack"}
2023-09-30 12:24:22.096936+0200 BeTidy[637:65020] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.097230+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.097986+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.098166+0200 BeTidy[637:65018] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.098772+0200 BeTidy[637:65018] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] receive(_:): connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.098964+0200 BeTidy[637:65018] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] dispose(of subscriptionEvent): connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.099076+0200 BeTidy[637:65018] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] connectionState now connected
2023-09-30 12:24:22.099359+0200 BeTidy[637:65101] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.4] .connected GuestProject
2023-09-30 12:24:22.099491+0200 BeTidy[637:65101] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] 5/7 initialized
2023-09-30 12:24:22.118025+0200 BeTidy[637:65029] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"70B024E1-4C21-41C5-995D-CFB17B597954","type":"start_ack"}
2023-09-30 12:24:22.118481+0200 BeTidy[637:65029] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.120026+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.120425+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] receive(_:): connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.120608+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] dispose(of subscriptionEvent): connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.120718+0200 BeTidy[637:65101] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] connectionState now connected
2023-09-30 12:24:22.121010+0200 BeTidy[637:65018] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.4] .connected Guest
2023-09-30 12:24:22.121175+0200 BeTidy[637:65018] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] 6/7 initialized
2023-09-30 12:24:22.126243+0200 BeTidy[637:65018] [StarscreamAdapter] websocketDidReceiveMessage: - {"id":"25C4F391-B669-4E54-9E7A-E0BE766713DB","type":"start_ack"}
2023-09-30 12:24:22.126583+0200 BeTidy[637:65018] [RealtimeConnectionProvider] Resetting stale connection timer
2023-09-30 12:24:22.127534+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.128177+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] receive(_:): connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.128478+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] dispose(of subscriptionEvent): connection(Amplify.SubscriptionConnectionState.connected)
2023-09-30 12:24:22.128693+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] connectionState now connected
2023-09-30 12:24:22.128948+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.4] .connected GuestTask
2023-09-30 12:24:22.129075+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.5] 7/7 initialized
2023-09-30 12:24:22.129373+0200 BeTidy[637:65029] [AnalyticsAWSIncomingEventReconciliationQueue] [InitializeSubscription.6] connected isInitialized
2023-09-30 12:24:22.129500+0200 BeTidy[637:65029] [DataStoreRemoteSyncEngine] [InitializeSubscription.5] RemoteSyncEngine IncomingEventReconciliationQueueEvent.initialized
2023-09-30 12:24:22.129589+0200 BeTidy[637:65029] [DataStoreRemoteSyncEngine] [Lifecycle event 1]: subscriptionsEstablished
2023-09-30 12:24:22.130013+0200 BeTidy[637:65029] [DataStoreStateMachine<State, Action>] Notifying: initializedSubscriptions
2023-09-30 12:24:22.130559+0200 BeTidy[637:65029] [DataStoreStateMachine<State, Action>] resolve(initializingSubscriptions(<AWSAPIPlugin.AWSAPIPlugin: 0x2831d4e40>, AWSDataStorePlugin.SQLiteStorageEngineAdapter), initializedSubscriptions) -> performingInitialSync
2023-09-30 12:24:22.131055+0200 BeTidy[637:65029] [DataStoreRemoteSyncEngine] New state: performingInitialSync
2023-09-30 12:24:22.131345+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): performingInitialSync
2023-09-30 12:24:22.131469+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] [InitializeSubscription.6] performInitialSync()
2023-09-30 12:24:22.133882+0200 BeTidy[637:65020] [DataStoreAWSInitialSyncOrchestrator] Beginning initial sync
2023-09-30 12:24:22.135375+0200 BeTidy[637:65020] [DataStoreAWSInitialSyncOrchestrator] [Lifecycle event 2]: syncQueriesStarted
2023-09-30 12:24:22.136481+0200 BeTidy[637:65103] [DataStoreInitialSyncOperation] Beginning sync for UserProject
2023-09-30 12:24:22.136567+0200 BeTidy[637:65029] [DataStoreInitialSyncOperation] Beginning sync for Guest
2023-09-30 12:24:22.136595+0200 BeTidy[637:65020] [DataStoreInitialSyncOperation] Beginning sync for User
2023-09-30 12:24:22.136634+0200 BeTidy[637:65101] [DataStoreInitialSyncOperation] Beginning sync for GuestProject
2023-09-30 12:24:22.136974+0200 BeTidy[637:65107] [DataStoreInitialSyncOperation] Beginning sync for TaskHistory
2023-09-30 12:24:22.136987+0200 BeTidy[637:65018] [DataStoreInitialSyncOperation] Beginning sync for GuestTask
2023-09-30 12:24:22.137607+0200 BeTidy[637:65107] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'TaskHistory'
2023-09-30 12:24:22.138436+0200 BeTidy[637:65018] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestTask'
2023-09-30 12:24:22.138934+0200 BeTidy[637:65020] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'User'
2023-09-30 12:24:22.139183+0200 BeTidy[637:65107] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'TaskHistory'
2023-09-30 12:24:22.139365+0200 BeTidy[637:65029] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'Guest'
2023-09-30 12:24:22.139660+0200 BeTidy[637:65103] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'UserProject'
2023-09-30 12:24:22.139924+0200 BeTidy[637:65020] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'User'
2023-09-30 12:24:22.140212+0200 BeTidy[637:65107] [DataStoreInitialSyncOperation] Beginning sync for UserTask
2023-09-30 12:24:22.140998+0200 BeTidy[637:65101] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestProject'
2023-09-30 12:24:22.141349+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.141530+0200 BeTidy[637:65018] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestTask'
2023-09-30 12:24:22.141583+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.141727+0200 BeTidy[637:65103] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'UserProject'
2023-09-30 12:24:22.141895+0200 BeTidy[637:65102] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.143818+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.143819+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.143941+0200 BeTidy[637:65107] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'UserTask'
2023-09-30 12:24:22.144040+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.144148+0200 BeTidy[637:65029] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'Guest'
2023-09-30 12:24:22.144654+0200 BeTidy[637:65020] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [08641A91-02F5-4281-BFC8-E50590FCF997] - Try [1/1]
2023-09-30 12:24:22.145507+0200 BeTidy[637:65020] [APIAPICategory] Starting query 6F570036-4E24-492F-9CB9-78B87CE42667
2023-09-30 12:24:22.145968+0200 BeTidy[637:65020] [APIAPICategory] {
  "query" : "query SyncUsers($limit: Int) {\n  syncUsers(limit: $limit) {\n    items {\n      identityId\n      createdAt\n      dataPrivacy\n      email\n      holidays\n      name\n      packages\n      pro\n      profiles\n      rooms\n      updatedAt\n      __typename\n      _version\n      _deleted\n      _lastChangedAt\n      owner\n    }\n    nextToken\n    startedAt\n  }\n}",
  "variables" : {
    "limit" : 1000
  }
}
2023-09-30 12:24:22.144739+0200 BeTidy[637:65102] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [F00E2023-09-30 12:24:22.146420+0200 BeTidy[637:65107] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'UserTask'
91DE-7E91-4A10-884A-4E4E88930D6A] - Try [1/1]
2023-09-30 12:24:22.147057+0200 BeTidy[637:65102] [APIAPICategory] Starting query 564C8AF1-54C9-4BBD-9901-06353773724E
2023-09-30 12:24:22.147117+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.147337+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.147838+0200 BeTidy[637:65102] [APIAPICategory] {
  "variables" : {
    "limit" : 1000
  },
  "query" : "query SyncUserProjects($limit: Int) {\n  syncUserProjects(limit: $limit) {\n    items {\n      id\n      afterImage\n      beforeImage\n      createdAt\n      creator\n      identityId\n      roomId\n      startDate\n      templateId\n      title\n      type\n      updated2023-09-30 12:24:22.148127+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.144749+0200 BeTidy[637:65103] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [08D57A24-45C2-42CE-99CC-D3EFF653AB1C] - Try [1/1]
2023-09-30 12:24:22.148234+0200 BeTidy[637:65107] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [B26F7B72-3C04-4667-8B03-F6E5AABB1648] - Try [1/1]
At\n      __typename\n      _version\n      _deleted\n      _lastChangedAt\n      owner\n    }\n    nextToken\n    startedAt\n  }\n}"
}
2023-09-30 12:24:22.148335+0200 BeTidy[637:65018] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.148890+0200 BeTidy[637:65107] [APIAPICategory] Starting query A2ED5031-715F-4A3A-B6D1-73EBC7C51509
2023-09-30 12:24:22.149148+0200 BeTidy[637:65018] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [527C6039-414C-48A4-831C-B215149B7D90] - Try [1/1]
2023-09-30 12:24:22.149189+0200 BeTidy[637:65107] [APIAPICategory] {

  "query" : "query SyncUserTasks($limit: Int) {\n  syncUserTasks(limit: $limit) {\n    items {\n      id\n      active\n      assigned\n      createdAt\n      creator\n      description\n      effort\n      finishedDate\n      identityId\n      important\n      intervalCount\n      intervalUnit\n      lastHistoryId\n      lastSkipDate\n      lastTodoDate\n      projectId\n      roomId\n      templateId\n      title\n      todoDate\n      type\n      updatedAt\n      __typename\n      _version\n      _deleted\n      _lastChangedAt\n      owner\n    }\n    nextToken\n    startedAt\n  }\n}",
  "variables" : {
    "limit" : 1000
  }
}
2023-09-30 12:24:22.148045+0200 BeTidy[637:65101] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestProject'
2023-09-30 12:24:22.149648+0200 BeTidy[637:65103] [APIAPICategory] Starting query B2857CE7-63F1-4376-92A5-17C77D98A00B
2023-09-30 12:24:22.149874+0200 BeTidy[637:65102] [APIAPICategory] Starting query F35FFCFB-7E14-4E5D-BBB3-BF88D098F0FC
2023-09-30 12:24:22.150092+0200 BeTidy[637:65103] [APIAPICategory] {
  "query" : "query SyncGuestTasks($filter: ModelGuestTaskFilterInput, $lastSync: AWSTimestamp, $limit: Int) {\n  syncGuestTasks(filter: $filter, lastSync: $lastSync, limit: $limit) {\n    items {\n      id\n      active\n      assigned\n      createdAt\n      creator\n      description\n      effort\n      finishedDate\n      identityId\n      important\n      intervalCount\n      intervalUnit\n      lastHistoryId\n      lastSkipDate\n      lastTodoDate\n      projectId\n      roomId\n      templateId\n      title\n      todoDate\n      type\n      updatedAt\n      __typename\n      _version\n      _deleted\n      _lastChangedAt\n    }\n    nextToken\n    startedAt\n  }\n}",
  "variables" : {
    "lastSync" : 1696069454509,
    "filter" : {
      "and" : [
        {
          "identityId" : {
            "eq" : "e537bceb-64ce-4963-9222023-09-30 12:24:22.151666+0200 BeTidy[637:65102] [APIAPICategory] {
  "variables" : {
    "limit" : 1000
  },
  "query" : "query SyncTaskHistories($limit: Int) {\n  syncTaskHistories(limit: $limit) {\n    items {\n      id\n      createdAt\n      effort\n      identityId\n      isProject\n      profileId\n      roomType\n      taskId\n      templateId\n      time\n      title\n      updatedAt\n      __typename\n      _version\n      _deleted\n      _lastChangedAt\n      owner\n    }\n    nextToken\n    startedAt\n  }\n}"
}
f-6868ce10056e"
          }
        }
      ]
    },
    "limit" : 1000
  }
}
2023-09-30 12:24:22.150361+0200 BeTidy[637:65029] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.152312+0200 BeTidy[637:65029] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.150778+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.148005+0200 BeTidy[637:65020] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.152687+0200 BeTidy[637:65101] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.152806+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.152894+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.152916+0200 BeTidy[637:65029] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [F2693D1E-0303-41AC-8305-17916A55D605] - Try [1/1]
2023-09-30 12:24:22.152965+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.153012+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.153171+0200 BeTidy[637:65020] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.153235+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.153323+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.153402+0200 BeTidy[637:65101] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [50DE6E74-A514-4403-A28C-BFEF59C5F0C4] - Try [1/1]
2023-09-30 12:24:22.153443+0200 BeTidy[637:65107] [APIAPICategory] Starting query CA3A1D99-F474-4C52-ABB8-A7A577825EFB
2023-09-30 12:24:22.153890+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.153941+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.154054+0200 BeTidy[637:65020] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.154149+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.154159+0200 BeTidy[637:65107] [APIAPICategory] {
  "variables" : {
    "lastSync" : 1696069289569,
    "limit" : 1000,
    "filter" : {
      "and" : [
        {
          "identityId" : {
            "eq" : "e537bceb-64ce-4963-922f-6868ce10056e"
          }
        }
      ]
    }
  },
  "query" : "query SyncGuests($filter: ModelGuestFilterInput, $lastSync: AWSTimestamp, $limit: Int) {\n  syncGuests(filter: $filter, lastSync: $lastSync, limit: $limit) {\n    items {\n      identityId\n      createdAt\n      dataPrivacy\n      holidays\n      profiles\n      rooms\n      updatedAt\n      __typename\n      _version\n      _deleted\n      _lastChangedAt\n    }\n    nextToken\n    startedAt\n  }\n}"
}
2023-09-30 12:24:22.154668+0200 BeTidy[637:65029] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
2023-09-30 12:24:22.154750+0200 BeTidy[637:65029] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [F00E91DE-7E91-4A10-884A-4E4E88930D6A] - Failed
2023-09-30 12:24:22.153753+0200 BeTidy[637:65103] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
2023-09-30 12:24:22.154254+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.154923+0200 BeTidy[637:65103] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [08641A91-02F5-4281-BFC8-E50590FCF997] - Failed
2023-09-30 12:24:22.154960+0200 BeTidy[637:65029] [DataStoreInitialSyncOperation] Sync for UserProject failed due to signed out error Failed to retrieve authorization token.
2023-09-30 12:24:22.154996+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.155062+0200 BeTidy[637:65103] [DataStoreInitialSyncOperation] Sync for User failed due to signed out error Failed to retrieve authorization token.
2023-09-30 12:24:22.154319+0200 BeTidy[637:65101] [APIAPICategory] Starting query F2177FF4-A83B-4C3C-B96A-CB714CE53E78
2023-09-30 12:24:22.156282+0200 BeTidy[637:65101] [APIAPICategory] {
  "query" : "query SyncGuestProjects($filter: ModelGuestProjectFilterInput, $lastSync: AWSTimestamp, $limit: Int) {\n  syncGuestProjects(filter: $filter, lastSync: $lastSync, limit: $limit) {\n    items {\n      id\n      afterImage\n      beforeImage\n      createdAt\n      creator\n      identityId\n      roomId\n      startDate\n      templateId\n      title\n      type\n      updatedAt\n      __typename\n      _version\n      _deleted\n      _lastChangedAt\n    }\n    nextToken\n    startedAt\n  }\n}",
  "variables" : {
    "filter" : {
      "and" : [
        {
          "identityId" : {
            "eq" : "e537bceb-64ce-4963-922f-6868ce10056e"
          }
        }
      ]
    },
    "limit" : 1000,
    "lastSync" : 1696069454504
  }
}
2023-02023-09-30 12:24:22.155112+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
9-30 12:24:22.156414+0200 BeTidy[637:65103] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
2023-09-30 12:24:22.155488+0200 BeTidy[637:65029] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
2023-09-30 12:24:22.158383+0200 BeTidy[637:65020] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.158465+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.158571+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.158685+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.158746+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.158857+0200 BeTidy[637:65020] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.160045+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.158955+0200 BeTidy[637:65102] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
2023-09-30 12:24:22.160161+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.160231+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.160277+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.160360+0200 BeTidy[637:65102] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [B26F7B72-3C04-4667-8B03-F6E5AABB1648] - Failed
2023-09-30 12:24:22.161577+0200 BeTidy[637:65102] [DataStoreInitialSyncOperation] Sync for UserTask failed due to signed out error Failed to retrieve authorization token.
2023-09-30 12:24:22.160549+0200 BeTidy[637:65020] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.161748+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.159562+0200 BeTidy[637:65029] [DataStoreModelSyncedEventEmitter] [Lifecycle event 3]: modelSyncedEvent model: User
2023-09-30 12:24:22.161888+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.161966+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.162061+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.162262+0200 BeTidy[637:65020] [AuthenticationAWSAuthFetchSessionTask] Starting execution2023-09-30 12:24:22.159566+0200 BeTidy[637:65103] [DataStoreModelSyncedEventEmitter] [Lifecycle event 3]: modelSyncedEvent model: UserProject

2023-09-30 12:24:22.161334+0200 BeTidy[637:65023] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
2023-09-30 12:24:22.159886+0200 BeTidy[637:65101] [APIAPICategory] Starting network task for query B2857CE7-63F1-4376-92A5-17C77D98A00B
2023-09-30 12:24:22.162359+0200 BeTidy[637:65029] [DataStoreSyncEventEmitter] [Lifecycle event 3]: modelSyncedReceived progress: 1/7
2023-09-30 12:24:22.162424+0200 BeTidy[637:65102] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
2023-09-30 12:24:22.163760+0200 BeTidy[637:65023] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [08D57A24-45C2-42CE-99CC-D3EFF653AB1C] - Failed
2023-09-30 12:24:22.163525+0200 BeTidy[637:65018] [APIAPICategory] Starting network task for query CA3A1D99-F474-4C52-ABB8-A7A577825EFB
2023-09-30 12:24:22.165282+0200 BeTidy[637:65023] [DataStoreInitialSyncOperation] Sync for TaskHistory failed due to signed out error Failed to retrieve authorization token.
2023-09-30 12:24:22.163813+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.163958+0200 BeTidy[637:65029] [DataStoreAWSDataStorePlugin] Emitting DataStore event: modelSyncedEvent ModelSyncedEvent(modelName: "User", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.165760+0200 BeTidy[637:65029] [DataStoreSyncEventEmitter] [Lifecycle event 3]: modelSyncedReceived progress: 2/7
2023-09-30 12:24:22.165693+0200 BeTidy[637:65020] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.164781+0200 BeTidy[637:65101] [DataStoreModelSyncedEventEmitter] [Lifecycle event 3]: modelSyncedEvent model: UserTask
2023-09-30 12:24:22.165759+0200 BeTidy[637:65023] [Amplify] Der Vorgang konnte nicht abgeschlossen werden. (Amplify.DataStoreError-Fehler 0.)
ModelSyncedEvent(modelName: "User", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.165863+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.166507+0200 BeTidy[637:65020] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.165926+0200 BeTidy[637:65029] [DataStoreAWSDataStorePlugin] Emitting DataStore event: modelSyncedEvent ModelSyncedEvent(modelName: "UserProject", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.167504+0200 BeTidy[637:65020] [APIAPICategory] Starting network task for query F2177FF4-A83B-4C3C-B96A-CB714CE53E78
2023-09-30 12:24:22.167608+0200 BeTidy[637:65029] [DataStoreSyncEventEmitter] [Lifecycle event 3]: modelSyncedReceived progress: 3/7
ModelSyncedEvent(modelName: "UserProject", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.168063+0200 BeTidy[637:65102] [DataStoreModelSyncedEventEmitter] [Lifecycle event 3]: modelSyncedEvent model: TaskHistory
2023-09-30 12:24:22.169268+0200 BeTidy[637:65029] [DataStoreAWSDataStorePlugin] Emitting DataStore event: modelSyncedEvent ModelSyncedEvent(modelName: "UserTask", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.169433+0200 BeTidy[637:65029] [DataStoreSyncEventEmitter] [Lifecycle event 3]: modelSyncedReceived progress: 4/7
2023-09-30 12:24:22.169513+0200 BeTidy[637:65029] [DataStoreAWSDataStorePlugin] Emitting DataStore event: modelSyncedEvent ModelSyncedEvent(modelName: "TaskHistory", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
ModelSyncedEvent(modelName: "UserTask", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
ModelSyncedEvent(modelName: "TaskHistory", isFullSync: true, isDeltaSync: false, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.280390+0200 BeTidy[637:65108] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [Operation 527C6039-414C-48A4-831C-B215149B7D90] - Success
2023-09-30 12:24:22.280725+0200 BeTidy[637:65108] [DataStoreAWSModelReconciliationQueue] enqueue(_:) skipping reconciliation, no models to enqueue.
2023-09-30 12:24:22.281551+0200 BeTidy[637:65108] [DataStoreSQLiteStorageEngineAdapter] select count("id") from "ModelSyncMetadata" where "id" = 'GuestTask'
2023-09-30 12:24:22.283095+0200 BeTidy[637:65108] [DataStoreSQLiteStorageEngineAdapter] update "ModelSyncMetadata"
set
  "lastSync" = 1696069462257
where "id" = 'GuestTask'
2023-09-30 12:24:22.294130+0200 BeTidy[637:65108] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestTask'
2023-09-30 12:24:22.294626+0200 BeTidy[637:65108] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestTask'
2023-09-30 12:24:22.296662+0200 BeTidy[637:65102] [DataStoreModelSyncedEventEmitter] [Lifecycle event 3]: modelSyncedEvent model: GuestTask
2023-09-30 12:24:22.297063+0200 BeTidy[637:65108] [DataStoreSyncEventEmitter] [Lifecycle event 3]: modelSyncedReceived progress: 5/7
2023-09-30 12:24:22.297467+0200 BeTidy[637:65108] [DataStoreAWSDataStorePlugin] Emitting DataStore event: modelSyncedEvent ModelSyncedEvent(modelName: "GuestTask", isFullSync: false, isDeltaSync: true, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.400861+0200 BeTidy[637:65103] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [Operation F2693D1E-0303-41AC-8305-17916A55D605] - Success
2023-09-30 12:24:22.401960+0200 BeTidy[637:65108] [DataStoreModelSyncedEventEmitter] [Lifecycle event 3]: modelSyncedEvent model: Guest
2023-09-30 12:24:22.402384+0200 BeTidy[637:65108] [DataStoreSyncEventEmitter] [Lifecycle event 3]: modelSyncedReceived progress: 6/7
2023-09-30 12:24:22.402722+0200 BeTidy[637:65102] [APIRetryableGraphQLOperation<PaginatedList<AnyModel>>] [Operation 50DE6E74-A514-4403-A28C-BFEF59C5F0C4] - Success
2023-09-30 12:24:22.402796+0200 BeTidy[637:65108] [DataStoreAWSDataStorePlugin] Emitting DataStore event: modelSyncedEvent ModelSyncedEvent(modelName: "Guest", isFullSync: false, isDeltaSync: true, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.402875+0200 BeTidy[637:65102] [DataStoreAWSModelReconciliationQueue] enqueue(_:) skipping reconciliation, no models to enqueue.
ModelSyncedEvent2023-09-30 12:24:22.403386+0200 BeTidy[637:65102] [DataStoreSQLiteStorageEngineAdapter] select count("id") from "ModelSyncMetadata" where "id" = 'GuestProject'
(modelName: "Guest", isFullSync: false, isDeltaSync: true, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.404473+0200 BeTidy[637:65102] [DataStoreSQLiteStorageEngineAdapter] update "ModelSyncMetadata"
set
  "lastSync" = 1696069462360
where "id" = 'GuestProject'
2023-09-30 12:24:22.414919+0200 BeTidy[637:65102] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestProject'
2023-09-30 12:24:22.415399+0200 BeTidy[637:65102] [DataStoreSQLiteStorageEngineAdapter] select
  "root"."id" as "id", "root"."lastSync" as "lastSync"
from "ModelSyncMetadata" as "root"
where 1 = 1
  and "root"."id" = 'GuestProject'
2023-09-30 12:24:22.417342+0200 BeTidy[637:65108] [DataStoreModelSyncedEventEmitter] [Lifecycle event 3]: modelSyncedEvent model: GuestProject
2023-09-30 12:24:22.417765+0200 BeTidy[637:65102] [DataStoreSyncEventEmitter] [Lifecycle event 3]: modelSyncedReceived progress: 7/7
2023-09-30 12:24:22.418113+0200 BeTidy[637:65102] [DataStoreAWSDataStorePlugin] Emitting DataStore event: modelSyncedEvent ModelSyncedEvent(modelName: "GuestProject", isFullSync: false, isDeltaSync: true, added: 0, updated: 0, deleted: 0)
2023-09-30 12:24:22.418828+0200 BeTidy[637:65102] [DataStoreAWSDataStorePlugin] [Lifecycle event 4]: syncQueriesReady
2023-09-30 12:24:22.419115+0200 BeTidy[637:65103] [DataStoreRemoteSyncEngine] One or more errors occurred syncing models. See below for detailed error description.
2023-09-30 12:24:22.419488+0200 BeTidy[637:65103] [DataStoreRemoteSyncEngine] DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
2023-09-30 12:24:22.421062+0200 BeTidy[637:65103] [DataStoreStateMachine<State, Action>] Notifying: errored(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.422405+0200 BeTidy[637:65103] [DataStoreStateMachine<State, Action>] resolve(performingInitialSync, errored(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)) -> cleaningUp(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.426339+0200 BeTidy[637:65103] [DataStoreRemoteSyncEngine] New state: cleaningUp(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.427546+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): cleaningUp(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.428614+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe CAC95CCA-0360-4DDB-BF76-77531A00C909
2023-09-30 12:24:22.429122+0200 BeTidy[637:65103] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.429196+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 74ACB61B-E05B-4F6A-9154-0422EC50E678
2023-09-30 12:24:22.429272+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.429490+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe AD9729FF-D277-4FC3-864C-7E5B05DB413C
2023-09-30 12:24:22.429514+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.429812+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.429883+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 0E480614-E844-4F85-9439-07707EB52A53
2023-09-30 12:24:22.429926+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.430146+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 14B2A6CB-6C39-4DFF-92D6-00F0FD679225
2023-09-30 12:24:22.430280+0200 BeTidy[637:65103] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.430315+0200 BeTidy[637:65102] [StarscreamAdapter] socket.write - {"id":"CAC95CCA-0360-4DDB-BF76-77531A00C909","type":"stop"}
2023-09-30 12:24:22.431008+0200 BeTidy[637:65103] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.431119+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.431162+0200 BeTidy[637:65108] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.431268+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.431347+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.431388+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 27DECC50-BD51-43AE-8166-CB895DB1DCE8
2023-09-30 12:24:22.431452+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.433952+0200 BeTidy[637:65103] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.434083+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"74ACB61B-E05B-4F6A-9154-0422EC50E678","type":"stop"}
2023-09-30 12:24:22.434138+0200 BeTidy[637:65018] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.434248+0200 BeTidy[637:65103] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.433952+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe DCA0F379-0C56-4703-85A8-C64E3CE17CA4
2023-09-30 12:24:22.434323+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.434471+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.434570+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.434572+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 13CFF7A7-1811-40E6-BB1E-B0827677F9A2
2023-09-30 12:24:22.435978+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.436264+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe EB7A4733-D55D-42D9-9C3C-9F4F3512D2D0
2023-09-30 12:24:22.436352+0200 BeTidy[637:65103] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.436567+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"AD9729FF-D277-4FC3-864C-7E5B05DB413C","type":"stop"}
2023-09-30 12:24:22.436639+0200 BeTidy[637:65018] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.436727+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: finished
2023-09-30 12:24:22.436784+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 180BFB57-BE52-4535-9EEC-4B4375C5E022
2023-09-30 12:24:22.437239+0200 BeTidy[637:65029] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
2023-09-30 12:24:22.437278+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe A6B94FC8-DBDB-4463-906D-3DEEA454328A
2023-09-30 12:24:22.436567+0200 BeTidy[637:65103] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.437576+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe C27A5FA9-8734-4992-8870-11EC2F830A00
2023-09-30 12:24:22.437601+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.437644+0200 BeTidy[637:65029] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
2023-09-30 12:24:22.437734+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.437824+0200 BeTidy[637:651032023-09-30 12:24:22.437932+0200 BeTidy[637:65029] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.437946+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"180BFB57-BE52-4535-9EEC-4B4375C5E022","type":"stop"}
2023-09-30 12:24:22.437977+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: finished
2023-09-30 12:24:22.438436+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.438452+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"A6B94FC8-DBDB-4463-906D-3DEEA454328A","type":"stop"}
2023-09-30 12:24:22.438506+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"C27A5FA9-8734-4992-8870-11EC2F830A00","type":"stop"}
2023-09-30 12:24:22.438550+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 70B024E1-4C21-41C5-995D-CFB17B597954
2023-09-30 12:24:22.438794+0200 BeTidy[637:65103] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.438819+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 3345A2F5-BAF6-4B26-96D5-8B6E2A48C504
2023-09-30 12:24:22.438919+0200 BeTidy[637:65103] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.438936+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 6E97ED11-1D1F-4136-853C-4044A70583B1
2023-09-30 12:24:22.438964+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.439051+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.439085+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 2AE596FE-5978-4999-830C-470EFE5B62A7
2023-09-30 12:24:22.439105+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 122023-09-30 12:24:22.439216+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe D3B564A7-61AA-435F-B3B9-2F68E211137E
2023-09-30 12:24:22.439227+0200 BeTidy[637:65018] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
2023-09-30 12:24:22.439327+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe C0BCF448-3C2D-4464-9B4A-01DE718939E5
2023-09-30 12:24:22.439412+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"70B024E1-4C21-41C5-995D-CFB17B597954","type":"stop"}
:24:22.439151+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.439145+0200 BeTidy[637:65102] [StarscreamAdapter] socket.write - {"id":"0E480614-E844-4F85-9439-07707EB52A53","type":"stop"}
2023-09-30 12:24:22.439566+0200 BeTidy[637:65108] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
2023-09-30 12:24:22.439601+0200 BeTidy[637:65103] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.439636+0200 BeTidy[637:65102] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.440258+0200 BeTidy[637:65029] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
2023-09-30 12:24:22.439658+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventToAnyModelMapper] Received completion: finished
2023-09-30 12:24:22.439808+0200 BeTidy[637:65108] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
2023-09-30 12:24:22.439852+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"3345A2F5-BAF6-4B26-96D5-8B6E2A48C504","type":"stop"}
2023-09-30 12:24:22.440306+0200 BeTidy[637:65103] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.440352+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.440367+0200 BeTidy[637:65102] [StarscreamAdapte2023-09-30 12:24:22.440434+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"6E97ED11-1D1F-4136-853C-4044A70583B1","type":"stop"}
2023-09-30 12:24:22.440367+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe D0B66113-5449-4ECC-8B24-63D1C89908A0
r] socket.write - {"id":"14B2A6CB-6C39-4DFF-92D6-00F0FD679225","type":"stop"}
2023-09-30 12:24:22.440420+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.440533+0200 BeTidy[637:65102] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.440552+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.440594+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.440660+0200 BeTidy[637:65107] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
2023-09-30 12:24:22.440727+0200 BeTidy[637:65103] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.440778+0200 BeTidy[637:65107] [StarscreamAdapter] socket.write - {"id":"27DECC50-BD51-43AE-8166-CB895DB1DCE8","type":"stop"}
2023-09-30 12:24:22.440873+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 0DAF2382-DE41-498A-B551-FFDB78AE7BAC
2023-09-30 12:24:22.441084+0200 BeTidy[637:65103] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.441126+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.441203+0200 BeTidy[637:65103] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.441229+0200 BeTidy[637:65107] [APIAPICategory] Message type does not need signing - unsubscribe("stop")
2023-09-30 12:24:22.441250+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.441288+0200 BeTidy[637:65103] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.441341+0200 BeTidy[637:65107] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.441349+0200 BeTidy[637:65020] [AppSyncSubscriptionConnection] Unsubscribe 25C4F391-B669-4E54-9E7A-E0BE766713DB
2023-09-30 12:24:22.441493+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"D0B66113-5449-4ECC-8B24-63D1C89908A0","type":"stop"}
2023-09-30 12:24:22.441554+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"0DAF2382-DE41-498A-B551-FFDB78AE7BAC","type":"stop"}
2023-09-30 12:24:22.441626+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"DCA0F379-0C56-4703-85A8-C64E3CE17CA4","type":"stop"}
2023-09-30 12:24:22.441624+0200 BeTidy[637:65107] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.441624+0200 BeTidy[637:65103] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.441794+0200 BeTidy[637:65101] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.441798+0200 BeTidy[637:65103] [APIAPICategory] Message type does not need signing - unsubscribe(2023-09-30 12:24:22.441968+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] stopSyncingToCloud(_:)
"stop")
2023-09-30 12:24:22.442048+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] Notifying: receivedStop((Function))
2023-09-30 12:24:22.442122+0200 BeTidy[637:65103] [StarscreamAdapter] socket.write - {"id":"25C4F391-B669-4E54-9E7A-E0BE766713DB","type":"stop"}
2023-09-30 12:24:22.442164+0200 BeTidy[637:65020] [DataStoreStateMachine<State, Action>] resolve(stopped, receivedStop((Function))) -> stopping((Function))
2023-09-30 12:24:22.442172+0200 BeTidy[637:65103] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.442245+0200 BeTidy[637:65020] [DataStoreOutgoingMutationQueue] New state: stopping((Function))
2023-09-30 12:24:22.442305+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.442344+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.442413+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.442437+0200 BeTidy[637:65108] [DataStoreOutgoingMutationQueue] respond(to:): stopping((Function))
2023-09-30 12:24:22.442450+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.442462+0200 BeTidy[637:65108] [DataStoreOutgoingMutationQueue] doStop(completion:)
2023-09-30 12:24:22.442473+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.442484+0200 BeTidy[637:65108] [DataStoreOutgoingMutationQueue] doStopWithoutNotifyingStateMachine()
2023-09-30 12:24:22.442518+0200 BeTidy[637:65108] [DataStoreStateMachine<State, Action>] Notifying: doneStopping
2023-09-30 12:24:22.442555+0200 BeTidy[637:65107] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.442570+0200 BeTidy[637:65108] [DataStoreStateMachine<State, Action>] resolve(stopping((Function)), doneStopping) -> stopped
2023-09-30 12:24:22.442613+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.442618+0200 BeTidy[637:65108] [DataStoreOutgoingMutationQueue] New state: stopped
2023-09-30 12:24:22.442642+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.442684+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.442707+0200 BeTidy[637:65108] [DataStoreStateMachine<State, Action>] Notifying: cleanedUp(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to2023-09-30 12:24:22.442751+0200 BeTidy[637:65023] [StarscreamAdapter] socket.write - {"id":"13CFF7A7-1811-40E6-BB1E-B0827677F9A2","type":"stop"}
 retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400,2023-09-30 12:24:22.442767+0200 BeTidy[637:65023] [StarscreamAdapter] socket.disconnect
 Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.442716+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.442977+0200 BeTidy[637:65018] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
2023-09-30 12:24:22.443102+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.443178+0200 BeTidy[637:65108] [DataStoreStateMachine<State, Action>] resolve(cleaningUp(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign i2023-09-30 12:24:22.443240+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
n a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JS2023-09-30 12:24:22.443483+0200 BeTidy[637:65103] [StarscreamAdapter] socket.write - {"id":"EB7A4733-D55D-42D9-9C3C-9F4F3512D2D0","type":"stop"}
2023-09-30 12:24:22.443497+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
ONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages), cleanedUp(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)) -> schedulingRestart(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.443425+0200 BeTidy[637:65107] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.443812+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
2023-09-30 12:24:22.443995+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.444022+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.444062+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.444093+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.444116+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.444146+0200 BeTidy[637:65023] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.444206+0200 BeTidy[637:65107] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:222023-09-30 12:24:22.444308+0200 BeTidy[637:65018] [StarscreamAdapter] socket.write - {"id":"2AE596FE-5978-4999-830C-470EFE5B62A7","type":"stop"}
2023-09-30 12:24:22.444329+0200 BeTidy[637:65018] [StarscreamAdapter] socket.disconnect
.444237+0200 BeTidy[637:65108] [DataStoreRemoteSyncEngine] New state: schedulingRestart(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorizatio2023-09-30 12:24:22.444283+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
n token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.444259+0200 BeTidy[637:65107] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.444711+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.444755+0200 BeTidy[637:65107] [AuthenticationAWSAuthTaskHelper] Auth state configured
2023-09-30 12:24:22.444784+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.444805+0200 BeTidy[637:65107] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
2023-09-30 12:24:22.444975+0200 BeTidy[637:65023] [StarscreamAdapter] socket.write - {"id":"D3B564A7-61AA-435F-B3B9-2F68E211137E","type":"stop"}
2023-09-30 12:24:22.445006+0200 BeTidy[637:65029] [DataStoreIncomingAsyncSubscriptionEventPublisher] onCreateValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
2023-09-30 12:24:22.445047+0200 BeTidy[637:65107] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.445121+0200 BeTidy[637:65029] [AuthenticationAWSAuthFetchSessionTask] Starting execution
2023-09-30 12:24:22.445147+0200 BeTidy[637:65029] [AuthenticationAWSAuthTaskHelper] Check if authstate configured
2023-09-30 12:24:22.445157+0200 BeTidy[637:65107] [DataStoreRemoteSyncEngine] respond(to:): schedulingRestart(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retr2023-09-30 12:24:22.445317+0200 BeTidy[637:65020] [DataStoreIncomingAsyncSubscriptionEventPublisher] onUpdateValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
2023-09-30 12:24:22.445193+0200 BeTidy[637:65018] [StarscreamAdapter] socket.disconnect
2023-09-30 12:24:22.445258+0200 BeTidy[637:65108] [DataStoreOutgoingMutationQueue] respond(to:): stopped
2023-09-30 12:24:22.445199+0200 BeTidy[637:65029] [AuthenticationAWSAuthTaskHelper] Auth state configured
ieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
Auth2023-09-30 12:24:22.445444+0200 BeTidy[637:65029] [AuthenticationFetchAuthSessionOperationHelper] Fetching current state
2023-09-30 12:24:22.445447+0200 BeTidy[637:65103] [DataStoreIncomingAsyncSubscriptionEventPublisher] onDeleteValueListener: connection(Amplify.SubscriptionConnectionState.disconnected)
Error: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.2023-09-30 12:24:22.445474+0200 BeTidy[637:65029] [AuthenticationFetchAuthSessionOperationHelper] Session exists, checking validity
JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages)
2023-09-30 12:24:22.445638+0200 BeTidy[637:65029] [RealtimeConnectionProvider] all subscriptions removed, disconnecting websocket connection.
2023-09-30 12:24:22.445717+0200 BeTidy[637:65020] [StarscreamAdapter] socket.write - {"id":"C0BCF448-3C2D-4464-9B4A-01DE718939E5","type":"stop"}
2023-09-30 12:24:22.445791+0200 BeTidy[637:65107] [DataStoreStorageEngine] RemoteSyncEngine publisher completed with error DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to 2023-09-30 12:24:22.445801+0200 BeTidy[637:65020] [StarscreamAdapter] socket.disconnect
retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
2023-09-30 12:24:22.446259+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] Notifying: finished
2023-09-30 12:24:22.446339+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] resolve(schedulingRestart(DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages), finished) -> cleaningUpForTermination
2023-09-30 12:24:22.446546+0200 BeTidy[637:65107] [DataStoreRemoteSyncEngine] New state: cleaningUpForTermination
2023-09-30 12:24:22.446635+0200 BeTidy[637:65107] [DataStoreReadyEventEmitter] Failed to emit ready event, error: DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
DataStoreError: One or more errors occurred syncing models. See below for detailed error description.
Recovery suggestion: DataStoreError: An error occurred syncing User
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserProject
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing UserTask
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing TaskHistory
Caused by:
DataStoreError: Failed to retrieve authorization token.
Caused by:
APIError: Failed to retrieve authorization token.
Caused by:
AuthError: There is no user signed in to retreive cognito tokens
Recovery suggestion: Call Auth.signIn to sign in a user and then call Auth.fetchSession
DataStoreError: An error occurred syncing Guest
Caused by:
DataStoreError: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
Caused by:
GraphQLResponseError<PaginatedList<AnyModel>>: GraphQL service returned a successful response containing errors: [Amplify.GraphQLError(message: "Query condition missed key schema element: ds_pk (Service: DynamoDb, Status Code: 400, Request ID: 4VNDFCET53NIEHOPSSIJNSORQRVV4KQNSO5AEMVJF66Q9ASUAAJG)", locations: Optional([Amplify.GraphQLError.Location(line: 2, column: 3)]), path: Optional([Amplify.JSONValue.string("syncGuests")]), extensions: Optional(["errorInfo": Amplify.JSONValue.null, "errorType": Amplify.JSONValue.string("DynamoDB:DynamoDbException"), "data": Amplify.JSONValue.null]))]
Recovery suggestion: The list of `GraphQLError` contains service-specific messages
2023-09-30 12:24:22.447027+0200 BeTidy[637:65107] [DataStoreStorageEngine] Stopping DataStore successful.
2023-09-30 12:24:22.447072+0200 BeTidy[637:65107] [DataStoreRemoteSyncEngine] respond(to:): cleaningUpForTermination
2023-09-30 12:24:22.447096+0200 BeTidy[637:65107] [DataStoreOutgoingMutationQueue] stopSyncingToCloud(_:)
2023-09-30 12:24:22.447136+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] Notifying: receivedStop((Function))
2023-09-30 12:24:22.447197+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] resolve(stopped, receivedStop((Function))) -> stopping((Function))
2023-09-30 12:24:22.447243+0200 BeTidy[637:65107] [DataStoreOutgoingMutationQueue] New state: stopping((Function))
2023-09-30 12:24:22.447320+0200 BeTidy[637:65107] [DataStoreOutgoingMutationQueue] respond(to:): stopping((Function))
2023-09-30 12:24:22.447342+0200 BeTidy[637:65107] [DataStoreOutgoingMutationQueue] doStop(completion:)
2023-09-30 12:24:22.447362+0200 BeTidy[637:65107] [DataStoreOutgoingMutationQueue] doStopWithoutNotifyingStateMachine()
2023-09-30 12:24:22.447395+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] Notifying: doneStopping
2023-09-30 12:24:22.447448+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] resolve(stopping((Function)), doneStopping) -> stopped
2023-09-30 12:24:22.447483+0200 BeTidy[637:65107] [DataStoreOutgoingMutationQueue] New state: stopped
2023-09-30 12:24:22.447522+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] Notifying: cleanedUpForTermination
2023-09-30 12:24:22.447566+0200 BeTidy[637:65107] [DataStoreStateMachine<State, Action>] resolve(cleaningUpForTermination, cleanedUpForTermination) -> terminate
2023-09-30 12:24:22.447600+0200 BeTidy[637:65107] [DataStoreRemoteSyncEngine] New state: terminate
2023-09-30 12:24:22.447637+0200 BeTidy[637:65107] [DataStoreOutgoingMutationQueue] respond(to:): stopped
2023-09-30 12:24:22.447664+0200 BeTidy[637:65020] [DataStoreRemoteSyncEngine] respond(to:): terminate

@tobias-feldmann
Copy link
Author

The Github notify action didn't work because the log was too long.
That's why this comment again @thisisabhash

@thisisabhash
Copy link
Member

thisisabhash commented Oct 3, 2023

Hello, Thank you for the update and your patience with this. We will investigate it and post further updates in this thread.

@dayhaysoos
Copy link

I just wanted to share that I'm dealing with this as well.

This is what I'm trying to query:

type Question
  @model
  @auth(
    rules: [
      { allow: owner }
      { allow: public, provider: iam, operations: [read] }
    ]
  ) {
  id: ID!
  title: String
  body: String
  user: User @belongsTo(fields: ["userId"])
  userId: ID! @index(name: "byUser")
  tags: [String]
  createdAt: AWSDateTime
  updatedAt: AWSDateTime
  answers: [Answer] @hasMany(indexName: "byQuestion", fields: ["id"])
  comments: [Comment] @hasMany(indexName: "byQuestion", fields: ["id"])
  votes: [Vote] @hasMany(indexName: "byQuestion", fields: ["id"])
  moderationActivities: [ModerationActivity]
    @hasMany(indexName: "byQuestion", fields: ["id"])
  bestAnswersIds: [ID]
  netVoteCount: Int! @default(value: "0")
}

I'm able to query this table successfully while authenticated, but without auth I get a 403 error. I am also properly passing the proper authMode with my query.

@dpilch
Copy link
Member

dpilch commented Oct 9, 2023

I think the Query condition missed key schema element... issue may be related to this. aws-amplify/amplify-category-api#1901

The fix is in 12.6.0 of the CLI. Can you try upgrading and see if that resolves the issue.

@thisisabhash
Copy link
Member

@tobias-feldmann I can confirm that I am no longer seeing this issue in CLI v12.6.0 after upgrading from v12.4.0. Please upgrade to the latest version and let us know if you're still facing the issue.
@dayhaysoos Please upgrade to the latest CLI version and let us know how it goes.

@tobias-feldmann
Copy link
Author

Great, now it works. :)
Thank you @thisisabhash and @dpilch for your support.

@thisisabhash
Copy link
Member

Thanks @tobias-feldmann , I'm glad to hear that.
@dayhaysoos I am closing this issue. Feel free to open a new ticket if you are still facing issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working datastore Issues related to the DataStore category
Projects
None yet
Development

No branches or pull requests

6 participants