#2209 - Registering [default] as the default server but [default] is already registered as the default exception with hot-reload

This commit is contained in:
Robin Bygrave
2021-03-30 09:56:48 +13:00
parent 5cb9b9b237
commit d988dbe69d
2 changed files with 6 additions and 1 deletions
@@ -46,7 +46,12 @@ public class MainMemoryLeak {
config.addClass(ECachedBean.class);
config.loadFromProperties();
Database server1 = DatabaseFactory.create(config);
assert server1 != null;
// create again for #2193
Database server = DatabaseFactory.create(config);
assert server != null;
// create a string with 10k chars
char[] c = new char[10_000];