set name of temporary store to tmpDB

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@962620 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2010-07-09 17:58:54 +00:00
parent 48d0045460
commit 26430893ae
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ public class PListStore extends ServiceSupport {
this.journal.setMaxFileLength(getJournalMaxFileLength());
this.journal.setWriteBatchSize(getJournalMaxWriteBatchSize());
this.journal.start();
this.pageFile = new PageFile(directory, "scheduleDB");
this.pageFile = new PageFile(directory, "tmpDB");
this.pageFile.load();
this.pageFile.tx().execute(new Transaction.Closure<IOException>() {