xtmalliance / argon-server

A standards compliant Network Remote ID / Flight Authorisation / Geofence / Traffic Information server for UTM / U-Space. Includes integrations for consuming live flight data, non-repudiation of telemetry etc.
https://xtmalliance.org
Apache License 2.0
5 stars 10 forks source link

[BUGFIX] Fixed telemetry based conformance monitoring #116

Closed cyapa closed 7 months ago

cyapa commented 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.

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
hrishiballal commented 7 months ago

Thank you for this, merging