MINOR: MetricsIntegrationTest should set StreamsConfig.STATE_DIR_CONFIG (#6687)

Reviewers: John Roesler <john@confluent.io>, Guozhang Wang <wangguoz@gmail.com>
This commit is contained in:
Lucas Bradstreet 2019-05-07 08:54:32 -07:00 committed by Guozhang Wang
parent 4eadaff6b2
commit 8e7b57fbcd
1 changed files with 1 additions and 0 deletions

View File

@ -179,6 +179,7 @@ public class MetricsIntegrationTest {
streamsConfiguration.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.String().getClass());
streamsConfiguration.put(StreamsConfig.METRICS_RECORDING_LEVEL_CONFIG, Sensor.RecordingLevel.DEBUG.name);
streamsConfiguration.put(StreamsConfig.CACHE_MAX_BYTES_BUFFERING_CONFIG, 10 * 1024 * 1024L);
streamsConfiguration.put(StreamsConfig.STATE_DIR_CONFIG, TestUtils.tempDirectory().getPath());
}
@After