Closed cyapa closed 7 months ago
There is a bug when raising non conformant status for Telemetry based conformance monitoring. It is fixed in this PR as per below instructions.
Possible values for conformant_via_telemetry are True, 3,4,5,6,7,8 etc.
conformant_via_telemetry
With below condition, the non conformant status will not be raised when the status values are 3,4,5,6 etc.
Bug:
if conformant_via_telemetry: pass
Fix:
if conformant_via_telemetry is True: pass
Thank you for this, merging
There is a bug when raising non conformant status for Telemetry based conformance monitoring. It is fixed in this PR as per below instructions.
Possible values for
conformant_via_telemetry
are True, 3,4,5,6,7,8 etc.With below condition, the non conformant status will not be raised when the status values are 3,4,5,6 etc.
Bug:
Fix: