Skip to content

Commit

Permalink
fix bug where env name wasn't correctly sent to buffer transport thread
Browse files Browse the repository at this point in the history
  • Loading branch information
jtnelson committed Sep 13, 2014
1 parent 11bc1ba commit 166be8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@ public Engine(String bufferStore, String dbStore, String environment) {
@Authorized
private Engine(Buffer buffer, Database database, String environment) {
super(buffer, database, LockService.create(), RangeLockService.create());
this.environment = environment;
this.bufferTransportThread = new BufferTransportThread();
this.transactionStore = buffer.getBackingStore() + File.separator
+ "txn"; /* (authorized) */
this.environment = environment;
}

/**
Expand Down

0 comments on commit 166be8c

Please sign in to comment.