summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-07-24 20:50:37 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-07-24 20:50:37 +0000
commit36d10a12f518a6930b7ed76bbc6eeb4f61a3bb64 (patch)
treef99278acb95bcf21511f54b6677c9c9a0de940bf
parent73ba3461d384c2e7fe1681bf6a21d3456be32013 (diff)
downloadATCD-36d10a12f518a6930b7ed76bbc6eeb4f61a3bb64.tar.gz
ChangeLogTag:Wed Jul 24 13:49:02 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/orbsvcs/orbsvcs/CosLoadBalancing.idl6
2 files changed, 12 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e2f117caebf..7fef953c8e7 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Wed Jul 24 13:49:02 2002 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/orbsvcs/CosLoadBalancing.idl:
+
+ Corrected exception in "raises" clause of the
+ Strategy::push_loads() method. "StrategyNotAdaptive" instead of
+ "LocationNotFound."
+
Wed Jul 24 11:51:29 2002 Jaiganesh Balasubramanian <jai@doc.ece.uci.edu>
* tao/PortableServer/Collocated_Object.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/CosLoadBalancing.idl b/TAO/orbsvcs/orbsvcs/CosLoadBalancing.idl
index cadc36d0477..492a8244a9d 100644
--- a/TAO/orbsvcs/orbsvcs/CosLoadBalancing.idl
+++ b/TAO/orbsvcs/orbsvcs/CosLoadBalancing.idl
@@ -38,6 +38,8 @@
*/
module CosLoadBalancing
{
+ const IOP::ServiceId LB_GROUP_REF = 123456; // @todo TBA by OMG
+
typedef PortableGroup::Location Location;
typedef PortableGroup::Properties Properties;
@@ -75,7 +77,7 @@ module CosLoadBalancing
// Report loads at given location to the LoadManager.
void push_loads (in PortableGroup::Location the_location,
in LoadList loads)
- raises (LocationNotFound);
+ raises (StrategyNotAdaptive);
// Get loads, if any, at the given location. Load balancing
// strategies may use this method to query loads at specific
@@ -208,4 +210,4 @@ module CosLoadBalancing
#pragma prefix ""
-#endif /* COSLOADBALANCING_IDL */
+#endif /* COSLOADBALANCING_IDL */