8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a793e32 commit 741e7a8Copy full SHA for 741e7a8
ChangeLog
@@ -1,3 +1,7 @@
1
+v4.3.2 (2017-xx-xx)
2
+---------------------------
3
+* fixed redirect header (uppercase)
4
+
5
v4.3.1 (2017-11-27)
6
---------------------------
7
* fixed default Json parsing, include null values (Issue #163)
src/main/java/com/arangodb/internal/util/ResponseUtils.java
@@ -35,7 +35,7 @@ public class ResponseUtils {
35
36
private static final int ERROR_STATUS = 300;
37
private static final int ERROR_INTERNAL = 503;
38
- private static final String HEADER_ENDPOINT = "x-arango-endpoint";
+ private static final String HEADER_ENDPOINT = "X-Arango-Endpoint";
39
40
private ResponseUtils() {
41
super();
0 commit comments