Description
We correctly send out a gossip channel disable update after one full time tick being down (1-2 minutes). This is pretty nice in that it avoids nodes trying to route through our nodes too often if they're down. Other nodes have a much longer time window, causing them to have much less aggressive channel disables. Sadly, at one minute it's not super uncommon for tor nodes to get disabled (once a day or so on two nodes I looked at), and this causes the lightning terminal scorer to consider the LDK node unstable (even though it's the one doing the disabling - so is online). This causes user frustration and makes LDK look bad (even though it's probably failing fewer payments).
With taproot gossip we'll soon only be able to announce an update once per block, so at least for taproot channels we'll have to reduce the rate anyway.
Given the above I think we should go ahead and make this change for all channels. Not sure what the exact policy should be (we should stay maybe 10 blocks behind the tip and only update if we have "room", but maybe we should default to leaving a channel disabled if the peer is flapping when we run out of room? Just reducing our disable time to 5 minutes or so?).