Skip to content

Commit

Permalink
GMP: 2. LIVE_UPDATE=> dropped/lost Connection to Optima: more debug s…
Browse files Browse the repository at this point in the history
…tats added for tests ...
  • Loading branch information
alexsav815 committed Apr 18, 2024
1 parent 6c6d0a0 commit 586da14
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion utils/us_xpn_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ DbgLv(1) << "XpDa:cnc: qdrvrs|sqtab content error:"
// Check Experiment status
int US_XpnData::checkExpStatus( QString runid )
{
if ( ! dbxpn.open() )
{
qDebug() << "In XPN:checkExpStatus:: ! dbxpn.open() !!! ";
}

QString tabname( "ExperimentRun" );
QSqlQuery sqry;
QString schname( "AUC_schema" );
Expand Down Expand Up @@ -602,7 +607,9 @@ bool US_XpnData::reimport_data( const int runId, const int scanMask )

if ( ! dbxpn.open() )
{
return false;
qDebug() << "XPN: reimport_data: !dbxpn.open() !!! runID, scanMask -- "
<< runID << scanMask;
return false;
}

int oarows = tAsdata.count(); // Get old row counts
Expand Down

0 comments on commit 586da14

Please sign in to comment.