Skip to content
Snippets Groups Projects

Small fixes and improvements

Merged Rosen Matev requested to merge rm-improvements into master
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -85,8 +85,9 @@ else:
# all events if it can't process fast enough. However, for testing we
# use "ONE" so that the reader does not keep on pumping events when
# they are not consumer (i.e. a debugger is attached).
input_mbm_user_type = ("USER" if OnlineEnv.PartitionName.startswith("TEST")
else "ONE")
input_mbm_user_type = "USER"
if OnlineEnv.PartitionName.startswith("TEST"):
input_mbm_user_type = "ONE"
if task_type == "HLT2":
application.config.events_LowMark = 1000
Loading