Jason Song
Jason Song
说好的“更易用,更开发,拥有完善权限管理,支持zk,更易用”的第二版本呢?
The DELETE /_query endpoint provided by the Delete-By-Query plugin has been removed and replaced by the Delete By Query API. See [the document](https://www.elastic.co/guide/en/elasticsearch/reference/5.1/breaking_50_rest_api_changes.html#_literal_delete__query_literal_endpoint_removed) But mattbaird/elastigo still use it: ```go func...
When I use BulkIndexer to index data into ElasticSearch, I find that sometimes it would lost some data, the reason is that before the program exit, I will call BulkIndexer.Stop()...
Fix #798. Follow what has been done in other middlewares, like [CleanPath]( https://github.com/go-chi/chi/blob/51068a747f1a32dbce24c499561a0f5ecb7f7158/middleware/clean_path.go#L17-L22) And some middlewares may have the same issue too, I don't check them.
To reproduce it: ```go package main import ( "net/http" "time" "github.com/go-chi/chi/v5" "github.com/go-chi/chi/v5/middleware" ) func main() { go server() time.Sleep(time.Second) _, _ = http.Get("http://localhost:3000/abc%2Fefg") // 200 _, _ = http.Get("http://localhost:3000/abc%2Fefg/") //...
## Background Act runner connects to the Gitea instance via short HTTP connections. So runners have to ask for new task again and again. Gitea will start a transaction to...
Close #31066 Just follow what `FindRunOptions` and `FindScheduleOptions` do.
To help #31813, but do not replace it, since this PR just introduces the new module but misses some work: - New option in settings. `#31813` has done it. -...
## Background When a Gitea Actions job has been picked by a runner, a automatically generated token will be given to the runner at the same time. This is a...
#### What type of PR is this? docs: Documentation only changes #### Check the PR title. - [x] This PR title match the format: \(optional scope): \ - [x] The...