Skip to content

Commit

Permalink
upgrade to rxjava 2.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoten committed Feb 7, 2019
1 parent 3eb327f commit 2c0dd71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<scm.url>scm:git:https://github.com/davidmoten/rxjava2-jdbc.git</scm.url>
<maven.compiler.target>1.8</maven.compiler.target>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<rxjava.version>2.2.4</rxjava.version>
<rxjava.version>2.2.6</rxjava.version>
<checkstyle.version>2.17</checkstyle.version>
<findbugs.version>3.0.5</findbugs.version>
<javadoc.version>3.0.0</javadoc.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public Builder<T> scheduler(Scheduler scheduler) {
public T build() {
if (scheduler == null) {
ExecutorService executor = Executors.newFixedThreadPool(maxPoolSize);
scheduler = new ExecutorScheduler(executor);
scheduler = new ExecutorScheduler(executor, false);
}
if (url != null) {
cp = Util.connectionProvider(url, properties);
Expand Down

0 comments on commit 2c0dd71

Please sign in to comment.