Skip to content

Commit 8a2063a

Browse files
committed
Do not abort on Branching by default
1 parent ea9362b commit 8a2063a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

booster/tools/booster/Proxy.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ respondEither cfg@ProxyConfig{boosterState} booster kore req = case req of
319319
<$> accumulatedLogs
320320
)
321321
r{ExecuteRequest.state = execStateToKoreJson simplifiedBoosterState}
322-
-- if we stop for a reason in fallbackReasons (default [Aborted, Stuck, Branching],
322+
-- if we stop for a reason in fallbackReasons (default [Aborted, Stuck],
323323
-- revert to the old backend to re-confirm and possibly proceed
324324
| boosterResult.reason `elem` cfg.fallbackReasons -> do
325325
Booster.Log.withContext CtxProxy $

booster/tools/booster/Server.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ clProxyOptionsParser =
454454
(eitherReader $ mapM reasonReader . splitOn ",")
455455
( long "fallback-on"
456456
<> metavar "REASON1,REASON2..."
457-
<> value [Branching, Stuck, Aborted]
457+
<> value [Stuck, Aborted]
458458
<> help "Halt reasons for which requests should be re-executed with kore-rpc"
459459
<> showDefaultWith (intercalate "," . map show)
460460
)

0 commit comments

Comments
 (0)