summaryrefslogtreecommitdiff
path: root/cpp/src/IceStorm/LinkSubscriber.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2006-09-21 10:09:11 +0000
committerMatthew Newhook <matthew@zeroc.com>2006-09-21 10:09:11 +0000
commita3de64e5a68d6fc194c0e1ad356a17d3b2041372 (patch)
tree9277725ec00d289de0f8b9ba98a50f58b0a4058d /cpp/src/IceStorm/LinkSubscriber.cpp
parentFix (diff)
downloadice-a3de64e5a68d6fc194c0e1ad356a17d3b2041372.tar.bz2
ice-a3de64e5a68d6fc194c0e1ad356a17d3b2041372.tar.xz
ice-a3de64e5a68d6fc194c0e1ad356a17d3b2041372.zip
added link proxy fix.
Diffstat (limited to 'cpp/src/IceStorm/LinkSubscriber.cpp')
-rw-r--r--cpp/src/IceStorm/LinkSubscriber.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/cpp/src/IceStorm/LinkSubscriber.cpp b/cpp/src/IceStorm/LinkSubscriber.cpp
index 0c4b7b9e1f4..7cf030c727a 100644
--- a/cpp/src/IceStorm/LinkSubscriber.cpp
+++ b/cpp/src/IceStorm/LinkSubscriber.cpp
@@ -74,13 +74,12 @@ LinkSubscriber::publish(const EventPtr& event)
out << _desc << ": link topic publish failed: " << e;
}
}
- catch(const Ice::LocalException& e)
+ catch(const Ice::LocalException&)
{
- if(_traceLevels->subscriber > 0)
- {
- Ice::Trace out(_traceLevels->logger, _traceLevels->subscriberCat);
- out << _desc << ": link topic publish failed: " << e;
- }
+ //
+ // This should be eaten by LinkProxy.
+ //
+ assert(false);
}
}