diff options
| author | Alan Conway <aconway@apache.org> | 2009-02-23 22:12:19 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2009-02-23 22:12:19 +0000 |
| commit | 32965f844e087ccb671a0dc52dcd812c975341e9 (patch) | |
| tree | 7994c09e7b7e08282e97fed9253dbc985c38a8f8 /cpp/src/qpid/broker/SessionState.cpp | |
| parent | 3d10240efc85b6e76c500f177d6f9d680f29a493 (diff) | |
| download | qpid-python-32965f844e087ccb671a0dc52dcd812c975341e9.tar.gz | |
QPID-1674 Mick Goulish: Fixes an error caused by a string going out of scope just before ForkedBroker startup.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@747162 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/SessionState.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/SessionState.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/SessionState.cpp b/cpp/src/qpid/broker/SessionState.cpp index 82ffede3f9..dffc7cf6af 100644 --- a/cpp/src/qpid/broker/SessionState.cpp +++ b/cpp/src/qpid/broker/SessionState.cpp @@ -210,6 +210,7 @@ struct ScheduledCreditTask : public TimerTask { {} void fire() { + QPID_LOG(critical, "ScheduledCreditTask fired"); // FIXME aconway 2009-02-23: REMOVE // This is the best we can currently do to avoid a destruction/fire race if (!isCancelled()) { if ( !sessionState.processSendCredit(0) ) { |
