fix unapplied bug in diag space

This commit is contained in:
Jonathan Shook 2022-12-20 20:01:57 -06:00
parent 3f14fefcb1
commit a1cde761f5

View File

@ -38,6 +38,7 @@ public class DiagSpace implements ActivityDefObserver, AutoCloseable {
public DiagSpace(String name, NBConfiguration cfg) { public DiagSpace(String name, NBConfiguration cfg) {
this.cfg = cfg; this.cfg = cfg;
this.name = name; this.name = name;
applyConfig(cfg);
logger.trace("diag space initialized as '" + name + "'"); logger.trace("diag space initialized as '" + name + "'");
} }