Skip to content

Commit

Permalink
Bumped version to 1.11.15-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
enricovianello committed Oct 17, 2018
2 parents a0a84b8 + 7bcf165 commit 66f221a
Show file tree
Hide file tree
Showing 14 changed files with 866 additions and 613 deletions.
5 changes: 4 additions & 1 deletion etc/storm.properties.template
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,15 @@ synchcall.directoryManager.maxLsEntry=2000
# REST Services parameter
# ============================
storm.rest.services.port=
storm.rest.services.maxthreads=100
storm.rest.services.max_queue_size=1000

# ============================
# XMLRPC Server parameter
# ============================
synchcall.xmlrpc.unsecureServerPort=8080
synchcall.xmlrpc.maxthread=100
synchcall.xmlrpc.maxthread=256
synchcall.xmlrpc.max_queue_size=1000
synchcall.xmlrpc.security.enabled=true
synchcall.xmlrpc.security.token=

Expand Down
42 changes: 32 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,28 @@
<version>${metrics.version}</version>
</dependency>

<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jetty8</artifactId>
<version>${metrics.version}</version>
</dependency>

<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-servlets</artifactId>
<version>${metrics.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand All @@ -279,12 +301,12 @@
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>${commonsConfigurationVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -388,10 +410,10 @@
<artifactId>xmlrpc-server</artifactId>
<version>${xmlrpcVersion}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
Loading

0 comments on commit 66f221a

Please sign in to comment.