Skip to content

Commit

Permalink
Merge pull request #3305 from opensourcerouting/bugfix/isis-lsp-aggre…
Browse files Browse the repository at this point in the history
…gate-time

isisd: Adjust duration until lsp is regenerated
  • Loading branch information
donaldsharp authored Nov 12, 2018
2 parents 059cce8 + 01c3745 commit 226e1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isisd/isis_lsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ static int lsp_refresh(struct thread *thread)
if ((area->is_type & level) == 0)
return ISIS_ERROR;

if (monotime_since(&area->last_lsp_refresh_event[level - 1], NULL) < 50000L) {
if (monotime_since(&area->last_lsp_refresh_event[level - 1], NULL) < 100000L) {
sched_debug("ISIS (%s): Still unstable, postpone LSP L%d refresh",
area->area_tag, level);
_lsp_regenerate_schedule(area, level, 0, false,
Expand Down

0 comments on commit 226e1b7

Please sign in to comment.