[asterisk-scf-commits] asterisk-scf/integration/routing.git branch "no_c++11" created.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Fri Nov 18 18:30:34 CST 2011


branch "no_c++11" has been created
        at  df7b92f5275498245c4c64086a1faedc5db6181c (commit)

- Log -----------------------------------------------------------------
commit df7b92f5275498245c4c64086a1faedc5db6181c
Author: Ken Hunt <ken.hunt at digium.com>
Date:   Fri Nov 18 18:30:00 2011 -0600

    You can't call BOOST_CHECK_EQUAL until the initialization is complete w/ Boost 1.47

diff --git a/test/TestRouting.cpp b/test/TestRouting.cpp
index 85dd2a6..43f6111 100644
--- a/test/TestRouting.cpp
+++ b/test/TestRouting.cpp
@@ -182,7 +182,7 @@ struct GlobalIceFixture
             cerr << msg << endl;
             status = 1;
         }
-        BOOST_CHECK_EQUAL(0, status);
+        
     } // end Fixture() constructor
 
     void RegisterWithServiceLocator()

commit b803dcb774ce77589ddf2763bf8dea7a0c09a0fa
Author: Joshua Colp <jcolp at digium.com>
Date:   Fri Nov 11 14:50:46 2011 -0400

    Tweak log levels/messages. (issue ASTSCF-383)

diff --git a/src/BasicRoutingStateReplicatorApp.cpp b/src/BasicRoutingStateReplicatorApp.cpp
index 9e6c29d..6b95542 100644
--- a/src/BasicRoutingStateReplicatorApp.cpp
+++ b/src/BasicRoutingStateReplicatorApp.cpp
@@ -194,7 +194,7 @@ void BasicRoutingStateReplicatorService::deregisterFromServiceLocator(bool inclu
     }
     catch(...)
     {
-        lg(Error) << "Exception in " << BOOST_CURRENT_FUNCTION;
+        lg(Error) << "Exception in " << mAppName << BOOST_CURRENT_FUNCTION;
     }
 }
 
diff --git a/src/SessionRouterOperation.cpp b/src/SessionRouterOperation.cpp
index 17afe61..d365a33 100644
--- a/src/SessionRouterOperation.cpp
+++ b/src/SessionRouterOperation.cpp
@@ -260,9 +260,9 @@ SessionSeq removeSessionsFromBridge(BridgePrx bridge, SessionPrx except)
         lg(Debug) << "Removing sessions from bridge." ;
         bridge->removeSessions(removedSessions);
     }
-    catch(const Ice::Exception&)
+    catch(const Ice::Exception& ex)
     {
-        lg(Warning) << "Unable to remove sessions. " ;
+        lg(Warning) << "Unable to remove sessions as we received exception " << ex.what() ;
         // We won't give up because of this.
     }
     return removedSessions;

commit 8fde717473315a552252d184be250968bded2298
Author: David M. Lee <dlee at digium.com>
Date:   Thu Oct 20 16:39:19 2011 -0500

    Fixed unused variable warning

diff --git a/test/TestRouting.cpp b/test/TestRouting.cpp
index 2ce0d51..85dd2a6 100644
--- a/test/TestRouting.cpp
+++ b/test/TestRouting.cpp
@@ -182,6 +182,7 @@ struct GlobalIceFixture
             cerr << msg << endl;
             status = 1;
         }
+        BOOST_CHECK_EQUAL(0, status);
     } // end Fixture() constructor
 
     void RegisterWithServiceLocator()

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/routing.git



More information about the asterisk-scf-commits mailing list