Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Ticket: CM-10960
The timer is in seconds and was being divided by 1000 instead of
multiplying by 1000 when converting to ms.
/* Show write multiplier values */
json_object_int_add(json, "writeMultiplier", ospf->write_oi_count);
/* Show refresh parameters. */
- json_object_int_add(json, "refreshTimerMsecs", ospf->lsa_refresh_interval / 1000);
+ json_object_int_add(json, "refreshTimerMsecs", ospf->lsa_refresh_interval * 1000);
}
else
{