You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto verbose = ConfigParamSpec{"tof-compressor-verbose", VariantType::Bool, false, {"Enable verbose compressor"}};
37
37
auto paranoid = ConfigParamSpec{"tof-compressor-paranoid", VariantType::Bool, false, {"Enable paranoid compressor"}};
38
38
auto ignoreStf = ConfigParamSpec{"ignore-dist-stf", VariantType::Bool, false, {"do not subscribe to FLP/DISTSUBTIMEFRAME/0 message (no lost TF recovery)"}};
39
+
auto payloadlim = ConfigParamSpec{"payload-limit", VariantType::Int64, -1ll, {"Payload limit in Byte (-1 -> no limits)"}};
39
40
40
41
workflowOptions.push_back(config);
41
42
workflowOptions.push_back(outputDesc);
42
43
workflowOptions.push_back(rdhVersion);
43
44
workflowOptions.push_back(verbose);
44
45
workflowOptions.push_back(paranoid);
45
46
workflowOptions.push_back(ignoreStf);
47
+
workflowOptions.push_back(payloadlim);
46
48
workflowOptions.emplace_back(ConfigParamSpec{"old", VariantType::Bool, false, {"use the non-DPL version of the compressor"}});
0 commit comments