From 29cd944c116c12f503bd765fb7b24b33ac98bdbc Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Tue, 15 Feb 2022 15:34:50 +0100 Subject: [PATCH] file write disabled by default --- RELEASE.txt | 6 ++++++ slsReceiverSoftware/src/Implementation.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASE.txt b/RELEASE.txt index ce989bf9b..e5c58dee8 100755 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -34,6 +34,12 @@ This document describes the differences between v6.1.0 and v6.0.0. - m3 server crash (vthrehsold) - allow vtrim to be interpolated for Eiger settings - m3 setThresholdEnergy and setAllThresholdEnergy was overwriting gaincaps with settings enum +- can set localhost with virtual server with minimum configuration: (hostname localhost, rx_hostname localhost, udp_dstip auto) +- increases the progress according to listened index. (not processed index) +- current frame index points to listened frame index (not processed index) +- when in discard partial frames or empty mode, the frame number doesnt increase by 1, it increases to that number (so its faster) +- file write disabled by default + 2. Resolved Issues diff --git a/slsReceiverSoftware/src/Implementation.h b/slsReceiverSoftware/src/Implementation.h index 757d64d05..8264c7c34 100644 --- a/slsReceiverSoftware/src/Implementation.h +++ b/slsReceiverSoftware/src/Implementation.h @@ -299,7 +299,7 @@ class Implementation : private virtual slsDetectorDefs { std::string filePath{"/"}; std::string fileName{"run"}; uint64_t fileIndex{0}; - bool fileWriteEnable{true}; + bool fileWriteEnable{false}; bool masterFileWriteEnable{true}; bool overwriteEnable{true}; uint32_t framesPerFile{0};