diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-10-31 17:20:56 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-10-31 17:20:56 +0100 |
commit | 6bdffb9b9731d0db1d7fe5cb795f495c9dd9e386 (patch) | |
tree | 2c8490d4347dc8726beb08f4c9ba0ab831b05024 /cpp/src | |
parent | Added IceMX configuration to IceGrid demos, removed SQL configuration (diff) | |
download | ice-6bdffb9b9731d0db1d7fe5cb795f495c9dd9e386.tar.bz2 ice-6bdffb9b9731d0db1d7fe5cb795f495c9dd9e386.tar.xz ice-6bdffb9b9731d0db1d7fe5cb795f495c9dd9e386.zip |
Fixed IceStorm metrics issues
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceStorm/InstrumentationI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceStorm/InstrumentationI.cpp b/cpp/src/IceStorm/InstrumentationI.cpp index aa4c8478c9a..0fcd067b585 100644 --- a/cpp/src/IceStorm/InstrumentationI.cpp +++ b/cpp/src/IceStorm/InstrumentationI.cpp @@ -271,7 +271,7 @@ struct OutstandingUpdate void operator()(const SubscriberMetricsPtr& v) { - if(v-> queued -= count) + if(v->queued > 0) { v->queued -= count; } |