comparison Platforms/Generic/Oracle.cpp @ 562:37e396ae08a3

Merged dev into default
author Alain Mazy <am@osimis.io>
date Thu, 18 Apr 2019 07:30:56 +0000
parents 0f43e479b49c
children 4f2416d519b4
comparison
equal deleted inserted replaced
560:aaeec7be8fb7 562:37e396ae08a3
68 IOracleCommand& command = dynamic_cast<IOracleCommand&>(*item); 68 IOracleCommand& command = dynamic_cast<IOracleCommand&>(*item);
69 try 69 try
70 { 70 {
71 command.Execute(); 71 command.Execute();
72 } 72 }
73 catch (Orthanc::OrthancException& ex) 73 catch (Orthanc::OrthancException& /*ex*/)
74 { 74 {
75 // this is probably a curl error that has been triggered. We may just ignore it. 75 // this is probably a curl error that has been triggered. We may just ignore it.
76 // The command.success_ will stay at false and this will be handled in the command.Commit 76 // The command.success_ will stay at false and this will be handled in the command.Commit
77 } 77 }
78 78