Menu

#211 Missing database on file patches on tango-cvs for version 7

closed
5
2009-02-20
2009-01-29
Giacomo S
No

1. lib/cpp/server/dserverclass.cpp, tango cvs, line 1691:

if (db != NULL)

must be:

if (db != NULL && Util::_FileDb==false) /* patch for db on file */

2. lib/cpp/server/eventsupplier.cpp tango cvs, line 426:

if (Util::_FileDb == false)

must be:

if ((Util::_FileDb == false) && (tg->is_svr_starting() == true))

3. lib/cpp/server/utils.cpp, tango cvs, line 983:

_FileDb = true;

must be:

Tango::Util::_FileDb = true;

4. lib/cpp/server/utils.cpp, tango cvs, line 1325:

db->set_timeout_millis(DB_TIMEOUT);

must be added the check:

if(_FileDb==false) /* must check this first */
db->set_timeout_millis(DB_TIMEOUT);

Discussion

  • Emmanuel Taurel

    Emmanuel Taurel - 2009-02-20

    These patches are included in Tango 7
    I close the bug

    Manu

     
  • Emmanuel Taurel

    Emmanuel Taurel - 2009-02-20
    • status: open --> closed
     
  • Emmanuel Taurel

    Emmanuel Taurel - 2009-02-20

    These patches are included in Tango 7
    I close the bug

    Manu

     

Log in to post a comment.

MongoDB Logo MongoDB