File tree Expand file tree Collapse file tree 6 files changed +11
-12
lines changed
src/test/java/com/asquera/elasticsearch/plugins/http/auth/integration Expand file tree Collapse file tree 6 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : java
3
- script : ./script/ci/run_build.sh
3
+ install :
4
+ - mvn install -Delasticsearch.version=$ES_VERSION -DskipTests=true
5
+ script :
6
+ - mvn -Delasticsearch.version=$ES_VERSION -Dtests.security.manager=false test
4
7
env :
5
- - ES_VERSION=1.5.0
6
8
- ES_VERSION=1.5.1
7
9
- ES_VERSION=1.5.2
8
10
- ES_VERSION=1.6.0
9
11
cache :
10
12
directories :
11
- - $HOME/.m2
13
+ - $HOME/.m2
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ Use `date "+%Y-%m-%d"` to get the correct date formatting
9
9
### - Added
10
10
- allow HEAD root url authentication #39
11
11
- log http method on any request. #42
12
+ ### - Fix
13
+ - test: adapt to method signature change after 1.5.1 #55
14
+ - test: run custom install and test commands in ci
12
15
13
16
## [ 1.5.0] [ 2015-07-04 ]
14
17
<
8000
/td>
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ There is no way to configure this on a per index basis.
18
18
19
19
| Http Basic Plugin | elasticsearch |
20
20
| -----------------------------| -----------------------|
21
- | v1.5.0(master) | 1.5.x, 1.6.x |
21
+ | v1.5.1(master) | 1.5.1, 1.5.2, 1.6.x |
22
+ | v1.5.0 | 1.5.0 |
22
23
| v1.4.0 | 1.4.0 |
23
24
| v1.3.0 | 1.3.0 |
24
25
| v1.2.0 | 1.2.0 |
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<project xmlns =" http://maven.apache.org/POM/4.0.0"
3
- exmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
6
6
<groupId >com.asquera.elasticsearch</groupId >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -25,11 +25,6 @@ public class HttpBasicServerPluginIntegrationTest extends
25
25
protected final String localhost = "127.0.0.1" ;
26
26
27
27
28
- public static HttpRequestBuilder httpClient () {
29
- HttpServerTransport httpServerTransport = internalCluster ().getDataNodeInstance (HttpServerTransport .class );
30
- InetSocketAddress address = ((InetSocketTransportAddress ) httpServerTransport .boundAddress ().publishAddress ()).address ();
31
- return new HttpRequestBuilder (HttpClients .createDefault ()).host (address .getHostName ()).port (address .getPort ());
32
- }
33
28
/**
34
29
*
35
30
* @return a Builder with the plugin included and bind_host and publish_host
You can’t perform that action at this time.
0 commit comments