Merge pull request #70 from epics-base/jenkins_problem

another attempt to fix jenkins failure
This commit is contained in:
Marty Kraimer
2021-04-07 11:55:18 -04:00
committed by GitHub
3 changed files with 1 additions and 5 deletions

View File

@ -38,7 +38,4 @@ SHRLIB_VERSION ?= $(EPICS_PVDATABASE_MAJOR_VERSION).$(EPICS_PVDATABASE_MINOR_VER
# needed for Windows
LIB_SYS_LIBS_WIN32 += netapi32 ws2_32
#pvDatabase_LIBS += $(EPICS_BASE_PVA_CORE_LIBS)
#pvDatabase_LIBS += $(EPICS_BASE_IOC_LIBS)
include $(TOP)/configure/RULES

View File

@ -912,7 +912,7 @@ void ChannelRPCLocal::processRequest(
{
result = service->request(pvArgument);
}
catch (RPCRequestException& rre)
catch (epics::pvAccess::RPCRequestException& rre)
{
status = Status(rre.getStatus(), rre.what());
ok = false;

View File

@ -46,7 +46,6 @@ extern "C" void pvdbl(const iocshArgBuf *args)
static void registerChannelProviderLocal(void)
{
static int firstTime = 1;
cout << "registerChannelProviderLocal firstTime " << (firstTime ? "true" : "false") << endl;
if (firstTime) {
firstTime = 0;
iocshRegister(&pvdblFuncDef, pvdbl);