Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ notifications:
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then export JAVA_HOME=$(/usr/libexec/java_home); fi
install:
- mvn -B -Pdeploy --settings .travis-settings.xml -V dependency:go-offline
- mvn -e -B -Pdeploy --settings .travis-settings.xml -V dependency:go-offline
script:
- mvn -B -Pdeploy --settings .travis-settings.xml -Dgpg.skip=true verify
- mvn -e -B -Pdeploy --settings .travis-settings.xml -Dgpg.skip=true verify
after_success:
- bash <(curl -s https://codecov.io/bash)
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ] && [ "$TRAVIS_OS_NAME" == "linux" ]; then echo $GPG_KEY | base64 --decode | gpg --batch --fast-import -; fi
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/lmdbjava/Env.java
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ public static final class Builder<T> {

private long mapSize = 1_024 * 1_024;
private int maxDbs = 1;
private int maxReaders = 1;
private int maxReaders = 126;
private boolean opened;
private final BufferProxy<T> proxy;

Expand Down