gaojingyu

Results 5 issues of gaojingyu

https://github.com/cch123/golang-notes/blob/master/assembly.md#%E5%9C%B0%E5%9D%80%E8%BF%90%E7%AE%97 这个地方不是很明白。另外,movq也有Scale的概念吗,比如下面的代码。 ``` #define g(r) 0(r)(TLS*1) get_tls(CX) MOVQ g(CX), AX ``` 展开后是 `movq 0(CX)(TLS*1),AX` 这是什么鬼?

When destinate is "http/1.1 " server, client should return "PROTOCOL_ERROR". Before this pr,client will return an frame will bad length. and then cause an "too large frame" error. see https://github.com/golang/go/issues/35724

cla: yes

Previously, webhook notifications would fail if they contained unicode characters in the alert data. This was because the JSON payload was not UTF-8 encoded before being sent. This commit fixes...

### Issue Summary When webhook message contains utf-8 chars, the requests.post will cause a traceback. ### Steps to Reproduce 1. Send an webhook alert contains utf-8 chars. 2. This line...