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 5c5e0b7 commit fe2b157Copy full SHA for fe2b157
src/main/java/com/rusticisoftware/tincan/RemoteLRS.java
@@ -37,6 +37,7 @@
37
import org.eclipse.jetty.client.util.BytesContentProvider;
38
import org.eclipse.jetty.http.HttpField;
39
import org.eclipse.jetty.http.HttpMethod;
40
+import org.eclipse.jetty.util.HttpCookieStore;
41
import org.eclipse.jetty.util.ssl.SslContextFactory;
42
import lombok.Data;
43
import lombok.NoArgsConstructor;
@@ -63,6 +64,7 @@ private static HttpClient httpClient() throws Exception {
63
64
_httpClient = new HttpClient(new SslContextFactory());
65
_httpClient.setConnectTimeout(TIMEOUT_CONNECT);
66
_httpClient.setFollowRedirects(false);
67
+ _httpClient.setCookieStore(new HttpCookieStore.Empty());
68
_httpClient.start();
69
}
70
0 commit comments