0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

comment out deprecated jni stuff

This commit is contained in:
Eliot Horowitz 2009-10-15 15:49:54 -04:00
parent 81082c8d7f
commit 9d96f7ec45

View File

@ -509,9 +509,10 @@ namespace mongo {
note we should already be in the mutex lock from connThread() at this point.
*/
/*
void jniCallbackDeprecated(Message& m, Message& out)
{
/* we should be in the same thread as the original request, so authInfo should be available. */
//
AuthenticationInfo *ai = currentClient.get()->ai;
Database *clientOld = cc().database();
@ -589,7 +590,7 @@ namespace mongo {
if ( database && database->profile >= 1 ) {
if ( database->profile >= 2 || ms >= 100 ) {
// profile it
profile(ss.str().c_str()+20/*skip ts*/, ms);
profile(ss.str().c_str()+20, ms);
}
}
}
@ -603,11 +604,10 @@ namespace mongo {
callDepth--;
if ( cc().database() != clientOld ) {
assert(false);/*
database = clientOld;
wassert(false);*/
assert(false);
}
}
*/
void getDatabaseNames( vector< string > &names ) {
boost::filesystem::path path( dbpath );