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
The error logging for exec > period logs the opposite of the actual constraint. I think it should be Exec must be less than or equal to period .
/* exec time */ exec = get_int_value_from(obj, "exec", FALSE, 0); if (exec > period) { log_critical(PIN2 "Exec must be greather than period"); exit(EXIT_INV_CONFIG); }
The text was updated successfully, but these errors were encountered:
The error logging for exec > period logs the opposite of the actual constraint. I think it should be
Exec must be less than or equal to period .
/* exec time */ exec = get_int_value_from(obj, "exec", FALSE, 0); if (exec > period) { log_critical(PIN2 "Exec must be greather than period"); exit(EXIT_INV_CONFIG); }
The text was updated successfully, but these errors were encountered: