Skip to content

Commit

Permalink
ProcessNodeChannelAcceptorJob refires immediately after crash (#84)
Browse files Browse the repository at this point in the history
Co-authored-by: Rodrigo Sanchez <[email protected]>
  • Loading branch information
RodriFS and Rodrigo Sanchez authored Jan 31, 2023
1 parent ca28774 commit 7a65d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jobs/ProcessNodeChannelAcceptorJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ await AcceptChannelOpeningRequestWithUpfrontShutdown(nbxplorerClient,
catch (Exception e)
{
_logger.LogError(e, "Error on {JobName}", nameof(ProcessNodeChannelAcceptorJob));
throw new JobExecutionException(e, false);
throw new JobExecutionException(e, true);
}
}
}

0 comments on commit 7a65d65

Please sign in to comment.