Skip to content

Commit

Permalink
added missing params
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyofrancis committed Sep 17, 2018
1 parent d1c5da5 commit 690decf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void useAppContext() throws Exception {
final Migration[] migrations = DownloadDatabase.getMigrations();
final LiveSettings liveSettings = new LiveSettings(namespace);
FetchLogger fetchLogger = new FetchLogger(true, namespace);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings, false);
}

@After
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void useAppContext() throws Exception {
final Migration[] migrations = DownloadDatabase.getMigrations();
FetchLogger fetchLogger = new FetchLogger(true, namespace);
final LiveSettings liveSettings = new LiveSettings(namespace);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings, false);
final Downloader client = FetchDefaults.getDefaultDownloader();
final FileServerDownloader serverDownloader = FetchDefaults.getDefaultFileServerDownloader();
final long progessInterval = FetchCoreDefaults.DEFAULT_PROGRESS_REPORTING_INTERVAL_IN_MILLISECONDS;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void useAppContext() throws Exception {
final FetchLogger fetchLogger = new FetchLogger(true, namespace);
final Migration[] migrations = DownloadDatabase.getMigrations();
final LiveSettings liveSettings = new LiveSettings(namespace);
final DatabaseManager databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings);
final DatabaseManager databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings, false);
final Downloader client = FetchDefaults.getDefaultDownloader();
final FileServerDownloader serverDownloader = FetchDefaults.getDefaultFileServerDownloader();
final long progessInterval = FetchCoreDefaults.DEFAULT_PROGRESS_REPORTING_INTERVAL_IN_MILLISECONDS;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void useAppContext() throws Exception {
final Migration[] migrations = DownloadDatabase.getMigrations();
FetchLogger fetchLogger = new FetchLogger(true, namespace);
final LiveSettings liveSettings = new LiveSettings(namespace);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings, false);
downloadProvider = new DownloadProvider(databaseManager);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void useAppContext() throws Exception {
final Boolean autoStart = true;
final Migration[] migrations = DownloadDatabase.getMigrations();
final LiveSettings liveSettings = new LiveSettings(namespace);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings);
databaseManager = new DatabaseManagerImpl(appContext, namespace, migrations, liveSettings, false);
final int concurrentLimit = FetchDefaults.DEFAULT_CONCURRENT_LIMIT;
final HandlerWrapper handlerWrapper = new HandlerWrapper(namespace);
final Downloader client = FetchDefaults.getDefaultDownloader();
Expand Down

0 comments on commit 690decf

Please sign in to comment.