Skip to content
Snippets Groups Projects
Commit 07b981dd authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

disagg interface system fix

parent 1a74b34c
No related branches found
No related tags found
1 merge request!435Disagg interface sys fix
...@@ -491,6 +491,9 @@ final class DisaggDataset { ...@@ -491,6 +491,9 @@ final class DisaggDataset {
case FAULT_SYSTEM: case FAULT_SYSTEM:
putOrAddSystem((SystemContributor) disaggContributor); putOrAddSystem((SystemContributor) disaggContributor);
break; break;
case INTERFACE_SYSTEM:
putOrAddSystem((SystemContributor) disaggContributor);
break;
default: default:
putOrAddSource((SourceContributor) disaggContributor); putOrAddSource((SourceContributor) disaggContributor);
} }
......
...@@ -91,6 +91,8 @@ final class Disaggregator { ...@@ -91,6 +91,8 @@ final class Disaggregator {
return processClusterSources(); return processClusterSources();
case FAULT_SYSTEM: case FAULT_SYSTEM:
return processSystemSources(); return processSystemSources();
case INTERFACE_SYSTEM:
return processSystemSources();
default: default:
return processSources(); return processSources();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment