File tree 7 files changed +10
-10
lines changed
7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 14
14
codeql :
15
15
strategy :
16
16
matrix :
17
- go-version : [1.13 .x, 1.14 .x]
17
+ go-version : [1.14 .x, 1.15 .x]
18
18
os : [ubuntu-latest]
19
19
name : Run ${{ matrix.go-version }} on ${{ matrix.os }}
20
20
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change 10
10
test :
11
11
strategy :
12
12
matrix :
13
- go-version : [1.13 .x, 1.14 .x]
13
+ go-version : [1.14 .x, 1.15 .x]
14
14
os : [ubuntu-latest]
15
15
name : Run ${{ matrix.go-version }} on ${{ matrix.os }}
16
16
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change
1
+ .PHONY : test
2
+ test :
3
+ go test -race -deprecations -strict-decoder -v . ./aws/... ./config/... ./trace/... ./uritemplates/...
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: '3'
2
2
3
3
services :
4
4
elasticsearch :
5
- image : docker.elastic.co/elasticsearch/elasticsearch-oss:7.8 .0
5
+ image : docker.elastic.co/elasticsearch/elasticsearch-oss:7.9 .0
6
6
hostname : elasticsearch
7
7
environment :
8
8
- cluster.name=elasticsearch
@@ -28,13 +28,12 @@ services:
28
28
ports :
29
29
- 9200:9200
30
30
platinum :
31
- image : docker.elastic.co/elasticsearch/elasticsearch:7.8 .0
31
+ image : docker.elastic.co/elasticsearch/elasticsearch:7.9 .0
32
32
hostname : elasticsearch-platinum
33
33
environment :
34
34
- cluster.name=platinum
35
35
- bootstrap.memory_lock=true
36
36
- discovery.type=single-node
37
- - xpack.ilm.enabled=true
38
37
- xpack.license.self_generated.type=trial
39
38
- xpack.security.enabled=true
40
39
- xpack.watcher.enabled=true
Original file line number Diff line number Diff line change @@ -159,6 +159,9 @@ func (s *IndicesSyncedFlushService) Validate() error {
159
159
}
160
160
161
161
// Do executes the service.
162
+ //
163
+ // Deprecated: Synced flush is deprecated and will be removed in 8.0.
164
+ // Use flush at _/flush or /{index}/_flush instead.
162
165
func (s * IndicesSyncedFlushService ) Do (ctx context.Context ) (* IndicesSyncedFlushResponse , error ) {
163
166
// Check pre-conditions
164
167
if err := s .Validate (); err != nil {
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments