From 896a8d6b7f8b786515fac33d2a718ecbe7cee8a7 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Thu, 5 Oct 2017 14:56:39 +0200 Subject: [PATCH] FairMQ: Revert regression introduced by f1513f5169d335c17ccdfdb27f0f0c4edbeb8b65 --- fairmq/PluginServices.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fairmq/PluginServices.cxx b/fairmq/PluginServices.cxx index 0511137c..d47f0c6c 100644 --- a/fairmq/PluginServices.cxx +++ b/fairmq/PluginServices.cxx @@ -13,7 +13,7 @@ using namespace std; const std::unordered_map PluginServices::fkDeviceStateStrMap = { {"OK", DeviceState::Ok}, - {"Error", DeviceState::Error}, + {"ERROR", DeviceState::Error}, {"IDLE", DeviceState::Idle}, {"INITIALIZING DEVICE", DeviceState::InitializingDevice}, {"DEVICE READY", DeviceState::DeviceReady}, @@ -27,7 +27,7 @@ const std::unordered_map PluginService }; const std::unordered_map> PluginServices::fkStrDeviceStateMap = { {DeviceState::Ok, "OK"}, - {DeviceState::Error, "Error"}, + {DeviceState::Error, "ERROR"}, {DeviceState::Idle, "IDLE"}, {DeviceState::InitializingDevice, "INITIALIZING DEVICE"}, {DeviceState::DeviceReady, "DEVICE READY"},