File tree Expand file tree Collapse file tree 8 files changed +7
-7
lines changed
java/com/arpnetworking/clusteraggregator Expand file tree Collapse file tree 8 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ For example:
160
160
#### Hocon
161
161
162
162
The daemon and pipeline configuration files may be written in [ Hocon] ( https://github.com/typesafehub/config )
163
- when specified with a _ .hocon _ extension.
163
+ when specified with a _ .conf extension.
164
164
165
165
Development
166
166
-----------
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
monitoringCluster="cagg"
2
2
logDirectory="logs"
3
- hostPipelineConfiguration ="/opt/cluster-aggregator/config/hostPipeline.hocon "
4
- clusterPipelineConfiguration ="/opt/cluster-aggregator/config/clusterPipeline.hocon "
3
+ hostPipelineConfiguration="/opt/cluster-aggregator/config/hostPipeline.conf "
4
+ clusterPipelineConfiguration="/opt/cluster-aggregator/config/clusterPipeline.conf "
5
5
httpHost="0.0.0.0"
6
6
httpPort=7066
7
7
httpHealthCheckPath="/ping"
File renamed without changes.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ dir="/opt/cluster-aggregator"
18
18
log_dir=" $dir /logs"
19
19
exec=" /opt/cluster-aggregator/bin/cluster-aggregator"
20
20
pid_file=" /var/run/cluster-aggregator/cluster-aggregator.pid"
21
- export CONFIG_FILE=" /opt/cluster-aggregator/config/config.hocon "
21
+ export CONFIG_FILE=" /opt/cluster-aggregator/config/config.conf "
22
22
export JAVA_HOME=" $( dirname $( dirname $( readlink -f $( which java) ) ) ) "
23
23
export JVM_XMS=" 64m"
24
24
export JVM_XMX=" 1024m"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ WORKDIR /opt/cluster-aggregator
24
24
ENV JVM_XMS="64m"
25
25
ENV JVM_XMX="1024m"
26
26
ENV LOGBACK_CONFIG="-Dlogback.configurationFile=/opt/cluster-aggregator/config/logback.xml"
27
- ENV APP_PARAMS="/opt/cluster-aggregator/config/config.hocon "
27
+ ENV APP_PARAMS="/opt/cluster-aggregator/config/config.conf "
28
28
ENV ADDITIONAL_APP_PARAMS=""
29
29
ENV ADDITIONAL_JAVA_OPTS=""
30
30
Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ private PartitionSet provideDatabasePartitionSet(@Named("metrics_clusteragg") fi
380
380
381
381
private final ClusterAggregatorConfiguration _configuration ;
382
382
383
- private static final String HOCON_FILE_EXTENSION = ".hocon " ;
383
+ private static final String HOCON_FILE_EXTENSION = ".conf " ;
384
384
private static final ObjectMapper OBJECT_MAPPER = ObjectMapperFactory .getInstance ();
385
385
386
386
private static final class RoundRobinEmitterFactory implements ConfiguredLaunchableFactory <Props , EmitterConfiguration > {
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ private static Builder<? extends JsonNodeSource> getFileSourceBuilder(
268
268
private static final SourceTypeLiteral SOURCE_TYPE_LITERAL = new SourceTypeLiteral ();
269
269
private static final Semaphore SHUTDOWN_SEMAPHORE = new Semaphore (0 );
270
270
private static final Thread SHUTDOWN_THREAD = new ShutdownThread ();
271
- private static final String HOCON_FILE_EXTENSION = ".hocon " ;
271
+ private static final String HOCON_FILE_EXTENSION = ".conf " ;
272
272
273
273
private static final class ShutdownThread extends Thread {
274
274
private ShutdownThread () {
You can’t perform that action at this time.
0 commit comments