We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently it is not possible to use this keyword in retried method:
@withRetry({ errors: [ErrorOnWhichWeShouldRetry], maxCalls: 10, delay: 1000, }) async offerEmailCredential(connectionId: string, email: string) { const offerCredentialData = JSON.stringify({ issuerDid: this.configService.get<string>('prism.prismIssuerDid'), connectionId, attrClaims: [ { name: 'email', value: email } ] }); .... }
This returns Cannot read properties of undefined (reading 'configService'). It is very often used with Nestjs
Cannot read properties of undefined (reading 'configService')
The text was updated successfully, but these errors were encountered:
Fixes issue #6 Not possible to pass context to method
d9bbece
ecf58cc
Merge pull request #7 from Teneff/bugfix
3c0dc42
Fixes #6
@matikucharski, thanks for the report! The issue is now fixed in @1.1.2
@1.1.2
Sorry, something went wrong.
Teneff
No branches or pull requests
Currently it is not possible to use this keyword in retried method:
This returns
Cannot read properties of undefined (reading 'configService')
. It is very often used with NestjsThe text was updated successfully, but these errors were encountered: