codewinch

Results 9 comments of codewinch

Don't know if this is relevant, but I've experienced some of this: ``` WARNING: DATA RACE Write at 0x00c000284018 by goroutine 13: github.com/alexandrevicenzi/go-sse.(*Channel).SendMessage() /home/cw/go/pkg/mod/github.com/alexandrevicenzi/[email protected]/channel.go:26 +0x8c github.com/alexandrevicenzi/go-sse.(*Server).SendMessage() /home/cw/go/pkg/mod/github.com/alexandrevicenzi/[email protected]/sse.go:119 +0x21b ``` I...

In my case, it was very reproducible and this instantly fixed it.

Spoke too soon -- have another on sse.go:96: `msg.retry = s.options.RetryInterval `

Are you saying that, in client mode, a server that is outside of your control is sending events that are larger than 64 KB? (https://pkg.go.dev/bufio#pkg-constants)

@frederikhors you might want to use a different method for persisting messages so that you can control that on your own.

After reducing `pageSize` to `25` and `dataLimit` to `100`, this is the complete error message I received when selecting about 20 boards: ``` error 429: { "message":"Rate limit exceeded: missing...

Export as CSV became grayed out after TrelloExport was enabled. It's possible that Trello is trying to block exports from non-business-class accounts. ![image](https://user-images.githubusercontent.com/81432659/122962218-cd47af80-d34a-11eb-9862-8a68e1e4346d.png)

Exporting individually doesn't seem to trigger the rate limit as often.

Upgrading to "Business Class" (pay to export personal data!) doesn't resolve the issue. I've also tried wrapping an incrementing 1 second delay (via setTimeout) around the $.ajax call and it...