diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-05-14 16:57:57 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-05-14 16:57:57 -0400 |
commit | 87cd9dac9f4281b7953bb76e48a6731b8e886840 (patch) | |
tree | dfbe0ea71bfc0d49c3c0956c6a450d42a6d60df5 /s | |
parent | 088f487c2a56c3ab39b499a2a58e63377f9041aa (diff) | |
download | mongo-87cd9dac9f4281b7953bb76e48a6731b8e886840.tar.gz |
compile mongos
Diffstat (limited to 's')
-rw-r--r-- | s/server.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/s/server.cpp b/s/server.cpp index b99c54fb453..8b002d76122 100644 --- a/s/server.cpp +++ b/s/server.cpp @@ -82,6 +82,11 @@ namespace mongo { server->run(); } + DBClientBase *createDirectClient(){ + uassert( "createDirectClient not implemented for sharding yet" , 0 ); + return 0; + } + } // namespace mongo using namespace mongo; |