From aab54181663dfc40e70dbef2cc541a67f0cf974b Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Tue, 19 Oct 2021 16:21:37 +0200 Subject: [PATCH] eiger copy detector server command should not reboot for eiger (feature does not exist) --- slsDetectorSoftware/src/Detector.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/slsDetectorSoftware/src/Detector.cpp b/slsDetectorSoftware/src/Detector.cpp index 5a148e3f2..9e24c0e0d 100644 --- a/slsDetectorSoftware/src/Detector.cpp +++ b/slsDetectorSoftware/src/Detector.cpp @@ -2141,7 +2141,9 @@ void Detector::resetFPGA(Positions pos) { void Detector::copyDetectorServer(const std::string &fname, const std::string &hostname, Positions pos) { pimpl->Parallel(&Module::copyDetectorServer, pos, fname, hostname); - rebootController(pos); + if (getDetectorType().squash() != defs::EIGER) { + rebootController(pos); + } } void Detector::rebootController(Positions pos) {