From 2964e0f4cbf0dcee17b1d333a0ac3312e9a5370d Mon Sep 17 00:00:00 2001
From: floblanc <floblanc@localhost>
Date: Wed, 29 Oct 2008 10:40:13 +0000
Subject: [PATCH] Implement a network group dedicated to the admin connector: - this network group is not configurable, and unbreakable - all connections handled by the admin connector are managed by this network group - all JMX connections are managed by this network group - this network group provides access to all private and public suffixes
---
opends/src/server/org/opends/server/core/WorkflowConfigManager.java | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/WorkflowConfigManager.java b/opends/src/server/org/opends/server/core/WorkflowConfigManager.java
index 53ae343..b51ce36 100644
--- a/opends/src/server/org/opends/server/core/WorkflowConfigManager.java
+++ b/opends/src/server/org/opends/server/core/WorkflowConfigManager.java
@@ -306,8 +306,11 @@
workflows.put(workflowCfg.dn(), workflowImpl);
workflowImpl.register();
- // Register the workflow with the default network group
- NetworkGroup.getDefaultNetworkGroup().registerWorkflow(workflowImpl);
+ // Register the workflow with the internal network group
+ NetworkGroup.getInternalNetworkGroup().registerWorkflow(workflowImpl);
+
+ // Register the workflow with the admin network group
+ NetworkGroup.getAdminNetworkGroup().registerWorkflow(workflowImpl);
}
}
--
Gitblit v1.10.0