From d9c03efcced8983a64ef0a014ba4e432e877ea8c Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 8 Oct 2018 20:08:47 +0000 Subject: [PATCH] --- devdocs/todo.txt | 1 + server/AyaNova/Startup.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/devdocs/todo.txt b/devdocs/todo.txt index 3f444868..8c62aeb5 100644 --- a/devdocs/todo.txt +++ b/devdocs/todo.txt @@ -31,6 +31,7 @@ IMMEDIATE ITEMS: - Auto visible id number assigning code - Give widgets a visible ID number scheme and add to tests - Ensure search code process keywords includes the Visible ID value andadd test for that in Search indexing tests + - Remove validation index from awidget table that was only for testing uniqueness of serial field - Why are exceptions that are triggered intentionally in intengration tests showing in the console? - Shouldn't that shit log only to text file?? diff --git a/server/AyaNova/Startup.cs b/server/AyaNova/Startup.cs index 2d58fa85..b81c502b 100644 --- a/server/AyaNova/Startup.cs +++ b/server/AyaNova/Startup.cs @@ -363,7 +363,7 @@ namespace AyaNova // ******************** TESTING WIPE DB ***************************** // //Set this to true to wipe the db and reinstall a trial license and re-seed the data - var TESTING_REFRESH_DB = false; + var TESTING_REFRESH_DB = true; #if (DEBUG) //TESTING @@ -405,7 +405,7 @@ namespace AyaNova if (TESTING_REFRESH_DB) { AyaNova.Core.License.Fetch(apiServerState, dbContext, _log); - Util.Seeder.SeedDatabase(Util.Seeder.SeedLevel.SmallOneManShopTrialDataSet); + Util.Seeder.SeedDatabase(Util.Seeder.SeedLevel.HugeForLoadTest); } //TESTING #endif