You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After start sync expression and sync data to the device, iOS functionality is working properly and smooth but while executing in Android, I got this error “[WARN] 39:56.141 DataStore - Sync error [Error: database or disk is full (code 13 SQLITE_FULL)]” and trap into continuing loading process.
Expected behavior
We need to sync data in Android device also the same as iOS.
Means data sync is not done even for the first time so I didn’t get data to show/display on the Android side.
Reproduction steps
Auth Login
Start sync expression by calling datastore configure
Getting error
Code Snippet
// Put your code below this line.DataStore.configure({syncExpressions: [syncExpression(OrderVerTwo,()=>{constfrom=addHours(newDate(),ConstantElements.constElements.syncExpressionTime).toISOString();return(order)=>order.createdAt("ge",from);}),syncExpression(Transporter,()=>{returntransporter=>transporter.id('eq',userTransporterId);}),syncExpression(TransporterEvents,()=>{returntransporterEvent=>transporterEvent.transporterID('eq',userTransporterId);}),syncExpression(Order,()=>{return(order)=>order.id("eq",null);}),syncExpression(Patient,()=>{return(patient)=>patient.id("eq",null);}),syncExpression(OrderEvent,()=>{return(orderEvent)=>orderEvent.id("eq",null);}),syncExpression(BuildingTransitionCosts,()=>{return(buildingTransitionCosts)=>buildingTransitionCosts.id("eq",null);}),syncExpression(OrderNotification,()=>{return(orderNotification)=>orderNotification.id("eq",null);}),syncExpression(User,()=>{return(user)=>user.id("eq",null);}),syncExpression(UserEvent,()=>{return(userEvent)=>userEvent.id("eq",null);}),],});
Log output
// Put your logs below this line
WARN [WARN] 39:56.141 DataStore - Sync error [Error: database or disk is full (code 13 SQLITE_FULL)]
WARN Possible Unhandled Promise Rejection (id: 0):
Before opening, please confirm:
JavaScript Framework
React Native
Amplify APIs
DataStore
Amplify Categories
storage
Environment information
Describe the bug
After start sync expression and sync data to the device, iOS functionality is working properly and smooth but while executing in Android, I got this error “[WARN] 39:56.141 DataStore - Sync error [Error: database or disk is full (code 13 SQLITE_FULL)]” and trap into continuing loading process.
Expected behavior
We need to sync data in Android device also the same as iOS.
Means data sync is not done even for the first time so I didn’t get data to show/display on the Android side.
Reproduction steps
Code Snippet
Log output
aws-exports.js
const awsmobile = {
"aws_project_region": "us-east-1",
"aws_cognito_identity_pool_id": "us-XXXXXXXXXX",
"aws_cognito_region": "us-east-1",
"aws_user_pools_id": "us-XXXXXXXXXX",
"aws_user_pools_web_client_id": "XXXXXXXXXX",
"oauth": {},
"aws_appsync_graphqlEndpoint": "XXXXXXXXXXXXXXX",
"aws_appsync_region": "us-east-1",
"aws_appsync_authenticationType": "AMAZON_COGNITO_USER_POOLS",
"aws_appsync_apiKey": "XXXXXXXXXXXXXXX"
};
Manual configuration
No response
Additional configuration
No response
Mobile Device
Android-All
Mobile Operating System
No response
Mobile Browser
No response
Mobile Browser Version
No response
Additional information and screenshots
Log with continue loading with the
android device.
The text was updated successfully, but these errors were encountered: