There was an error while loading. Please reload this page.
1 parent 44edbc4 commit 11f028eCopy full SHA for 11f028e
1 file changed
Framework/Core/src/DataRelayer.cxx
@@ -71,7 +71,9 @@ DataRelayer::DataRelayer(const CompletionPolicy& policy,
71
std::scoped_lock<LockableBase(std::recursive_mutex)> lock(mMutex);
72
73
if (policy.configureRelayer == nullptr) {
74
- setPipelineLength(DEFAULT_PIPELINE_LENGTH);
+ char *defaultPipelineLengthTxt = getenv("DPL_DEFAULT_PIPELINE_LENGTH");
75
+ int defaultPipelineLength = defaultPipelineLengthTxt ? std::stoi(defaultPipelineLengthTxt) : DEFAULT_PIPELINE_LENGTH;
76
+ setPipelineLength(defaultPipelineLength);
77
} else {
78
policy.configureRelayer(*this);
79
}
0 commit comments