-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
feat: rework error handler #9861
Changes from 9 commits
da83b1c
31b1e15
8e73bb7
1045827
ab67387
1e7f590
587cf27
c2b7b01
8c18cc2
0fdcb53
c041f90
44648bd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,6 +12,8 @@ import { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PredicatesGroup, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ModelPredicate, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AuthModeStrategy, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ErrorHandler, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ProcessName, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} from '../../types'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
buildSubscriptionGraphQLOperation, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -20,12 +22,26 @@ import { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getUserGroupsFromToken, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TransformerMutationType, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getTokenForCustomAuth, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mapErrorToType, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ErrorMap, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} from '../utils'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { ModelPredicateCreator } from '../../predicates'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { validatePredicate } from '../../util'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const logger = new Logger('DataStore'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const errorMap = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Unauthorized: (givenError: any) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
error: { errors: [{ message = '' } = {}] } = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errors: [], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} = givenError; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const regex = /Connection failed.+Unauthorized/; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return regex.test(message); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} as ErrorMap; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export enum CONTROL_MSG { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CONNECTED = 'CONNECTED', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -56,7 +72,8 @@ class SubscriptionProcessor { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private readonly schema: InternalSchema, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private readonly syncPredicates: WeakMap<SchemaModel, ModelPredicate<any>>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private readonly amplifyConfig: Record<string, any> = {}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private readonly authModeStrategy: AuthModeStrategy | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private readonly authModeStrategy: AuthModeStrategy, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private readonly errorHandler?: ErrorHandler | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private buildSubscription( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -436,12 +453,31 @@ class SubscriptionProcessor { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.drainBuffer(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
error: subscriptionError => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
error: async subscriptionError => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
error: { errors: [{ message = '' } = {}] } = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errors: [], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} = subscriptionError; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
await this.errorHandler({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep. And, it is intended to be supplied by the user, so every time There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm thinking we change |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
recoverySuggestion: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'Ensure app code is up to date, auth directives exist and are correct on each model, and that server-side data has not been invalidated by a schema change. If the problem persists, search for or create an issue: https://github.com/aws-amplify/amplify-js/issues', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
localModel: null, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message: message, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
model: modelDefinition.name, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
operation: operation, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errorType: mapErrorToType( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errorMap, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
subscriptionError | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
process: ProcessName.subscribe, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
remoteModel: null, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cause: subscriptionError, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doh!
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} catch (e) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.error('Sync error handler failed with:', e); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message.includes( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -487,7 +523,6 @@ class SubscriptionProcessor { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.warn('subscriptionError', message); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (typeof subscriptionReadyCallback === 'function') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -500,7 +535,6 @@ class SubscriptionProcessor { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
observer.error(message); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As-is, I think this PR gives Studio will have better errors to collect. But, we should make sure we have a TODO to expand this mapping and the similar mapping on the other sync engine processes. I think the missing auth directive errors should surface here too, for example.
Looking at this regex, I probably should have provided a sample in a comment of what this is supposed to match. I can circle back on that tomorrow if desired.