pbell23

Results 6 comments of pbell23

@jimmywarting Thank you for your help. I also tried your code to reduce memory usage when uploading large files but I can't make it work. Could you post a working...

I had the same error when I forgot the non null assertion when providing environment variables to the `secret` property. Just change `process.env.MICROSOFT_CLIENT_SECRET` to `process.env.MICROSOFT_CLIENT_SECRET! as string`

> For anyone else interested in solving this problem with this style of architecture. The way to transactionally ensure an email gets sent after a business transaction is the [outbox...

For the drag and drop functionality, I added the `data-drag-handle` attribute to the `img` element to make it work : ```javascript ```

Hello, Very interested in this feature. As it is not available for now, I have found two possible solutions. First, have consumers in different groups so messages are sent accros...

@imperfect-circuits This solution looks interesting but it adds complexity. If the jobC succeeds but not the jobD it will be necessary to make fail jobParent and then it will be...