Results 31 comments of Simon

Somewhat related to #918. It seems like the `columns` options doesn't really enforce anything at the moment

The problem is the following: The Random numbers are generated by creating tuples of increasing sequences, where the second value is increased until a threshold is reached. After that the...

@lenablind Yes the problem only occurs if the array is split across multiple processes.

Good luck with the issue, I am curious if you can come up with a solution. I haven't been able to.

About the self-hosted runners. GitHub offers an [easy way](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners) to setup and add an server. All that needs to be done is to run an executable on the machine and...

Having the same issue here. I am using https://www.npmjs.com/package/http-proxy-middleware and I ended up setting the authorization header manually in the `onProxyReq` callback

What is working is setting the header (again): ``` { target: 'some.target', onProxyReq: (proxyReq) => { // Removing existing cookie and overwriting header with authorized credentials const authHeader = Buffer.from(...

Looks like it has been solved now

Simple fix to not clutter your sentry. Add this to the sentry init or factory configuration. ``` beforeSend: (event) => { if ([Severity.Log, Severity.Info].includes(event.level)) { return null; } else {...

@AlbaHerrerias I love what you are doing here! Are there some things that you would need some help with? I am very well familiar with the ES6 syntax and I...