Skip to content

Commit

Permalink
peer discovery fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
romanman committed Oct 25, 2014
1 parent e9bbc95 commit 779bebc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void start() {

// creating the ThreadPoolExecutor
executorPool = new ThreadPoolExecutor(CONFIG.peerDiscoveryWorkers(),
1000, 10, TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(
CONFIG.peerDiscoveryWorkers(), 10, TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(
CONFIG.peerDiscoveryWorkers()), threadFactory, rejectionHandler);

// start the monitoring thread
Expand Down
2 changes: 1 addition & 1 deletion ethereumj-core/src/main/resources/system.properties
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ samples.dir = samples
# the existing database will be
# destroyed and all the data will be
# downloaded from peers again
database.reset = false
database.reset = true

# place to save physical storage files
database.dir = database
Expand Down
2 changes: 1 addition & 1 deletion ethereumj-studio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<dependency>
<groupId>org.ethereum</groupId>
<artifactId>ethereumj</artifactId>
<version>0.7.2.20141024.2310</version>
<version>0.7.2.20141024.2336</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 779bebc

Please sign in to comment.