Aliaksei Zhuk

Results 12 comments of Aliaksei Zhuk

Replace with `checksum := ^crc16.ChecksumIBM(data)` Modbus checksum should be calculated without XOR out. Take a look at Modbus test in this repository. But still you will not get `0x84C3`, because...

Maybe this https://github.com/go-oauth2/oauth2/issues/90 would answer your question.

@nitin099 it looks that you're missing an `id` parameter. This one worked for me: ```bash $ redis-cli EVALSHA fd07... 1 area-01 GEOMETRYADD polygon id-01 -0.088153, 51.505665, -0.08954, 51.505478, -0.090567, 51.505519,...

@Firjens The issue is still reproducible with fun-bots `v2.6.1` and VU build `19412`. Tested on different maps (i.e. Caspian border, Gulf of Oman), tanks and APCs stand still and keep...

Not reproducible in `v2.7.0-dev3`.

Using `v1.16.1` ```go issues, _, err := jiraClient.Issue.SearchV2JQL(jql, &jira.SearchOptionsV2{ MaxResults: 1000, Fields: []string{"summary", "status", "priority", "labels", "issuetype"}, }) ``` Works for me 👍

Same here, ended up with manual parsing. There are more troubles when you don't want to store any temporary files or load them into memory, for instance, to pass a...

I confirm, [the patch](https://github.com/Piggeldi2013/n8n-timeout-patch) provided by @Piggeldi2013 solved the 5m timeout problem for me. @Piggeldi2013 thanks a lot!

Using `e.Group` solved similar issue for me ```go e := echo.New() noCodegen := e.Group("") // Add non-codegen handlers here codegen := e.Group("") // Add codegen handlers and middleware here. ```...