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
How can we use method with callPromise applyOption not to retry
applyOptions: { noRetry: true, // <-- Tell Meteor not to retry },
this is method on server
export const journal = new ValidatedMethod({ name: 'app.journa', mixins: [CallPromiseMixin], applyOptions: { noRetry: true, // <-- Tell Meteor not to retry }, validate: null, async run() { // code here } })
this is client call
journal.callPromise() .then(res => { console.log('res', res) }).catch(err => { console.log('err', err) }) },
notRetry working with callPromise or Meteor.apply
The text was updated successfully, but these errors were encountered:
I believe this issue should be reported to https://github.com/Didericis/callpromise-mixin
Sorry, something went wrong.
No branches or pull requests
How can we use method with callPromise applyOption not to retry
this is method on server
this is client call
notRetry working with callPromise or Meteor.apply
The text was updated successfully, but these errors were encountered: