Avoid writing `ChannelManager` when hitting lnd bug 6039 2024-03-no-wake-on-shutdown-121
authorMatt Corallo <git@bluematt.me>
Thu, 14 Mar 2024 19:47:07 +0000 (19:47 +0000)
committerMatt Corallo <git@bluematt.me>
Thu, 14 Mar 2024 20:08:47 +0000 (20:08 +0000)
commit673a40969696ebc8bc5c4827492bae412021eee2
treec75150b59d2ce7f7f8adbb36cc7a4a02ed5cc9eb
parente2108f2eff4cb40f53c7efc1b3c8bb59682348ea
Avoid writing `ChannelManager` when hitting lnd bug 6039

When we hit lnd bug 6039, we end up sending error messages to peers
in a loop. This should be fine, but because we used the generic
`PersistenceNotifierGuard::notify_on_drop` lock above the specific
handling, we end up writing `ChannelManager` every time we manage a
round-trip to our peer.

This can add up quite quickly, and isn't actually changing, so we
really need to avoid writing the `ChannelManager` in this case.
lightning/src/ln/channelmanager.rs