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
According to TS 26.512 Table 7.8.3-1 the reportingInterval shall be greater than zero:
The time interval between successive metrics reports. The value shall be greater than zero.
If not specified, a single final report shall be sent after the media streaming session has ended.
The current implementation accepts values equal and below zero. Resulting output when reading the configuration afterwards
{
"reportingInterval": -1,
}
The text was updated successfully, but these errors were encountered:
Looks like this will need to be validated manually (at least for the time being) since the underlying YAML data type for DurationSec is a signed integer without a sensible minimum value of 0.
Description
According to TS 26.512 Table 7.8.3-1 the
reportingInterval
shall be greater than zero:The current implementation accepts values equal and below zero. Resulting output when reading the configuration afterwards
The text was updated successfully, but these errors were encountered: