Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
0.5.0
-----
* Disable Netty wire logging on the HTTP server (CASSSIDECAR-496)
* Tighten path containment in Live Migration file route (CASSSIDECAR-479)
* Add fast_forward_enabled flag to enable eager pipelining of staging and importing in coordinated writes (CASSSIDECAR-463)
* CachingSchemaStore should be reloaded when Schemastore kafka configs are changed (CASSSIDECAR-493)
Expand Down
1 change: 1 addition & 0 deletions conf/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
</root>


<logger name="io.netty" level="INFO" />
<logger name="com.datastax.driver.core" level="ERROR" />
<logger name="com.datastax.driver.core.ControlConnection" level="OFF" />
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class HttpServerOptionsProvider implements Function<SidecarConfiguration,
@Override
public HttpServerOptions apply(SidecarConfiguration configuration)
{
HttpServerOptions options = new HttpServerOptions().setLogActivity(true);
HttpServerOptions options = new HttpServerOptions();
ServiceConfiguration serviceConf = configuration.serviceConfiguration();
options.setIdleTimeoutUnit(MILLISECONDS)
.setIdleTimeout(serviceConf.requestIdleTimeout().toIntMillis())
Expand Down
Loading