From a51b38049b503b48f763ae8d17e16980420d5f6a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Wed, 18 Aug 2021 14:49:54 +0100 Subject: [PATCH] Marketmaker no longer masks errors. --- mango/marketmaking/marketmaker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mango/marketmaking/marketmaker.py b/mango/marketmaking/marketmaker.py index f0ace48..086e2e8 100644 --- a/mango/marketmaking/marketmaker.py +++ b/mango/marketmaking/marketmaker.py @@ -78,7 +78,7 @@ class MarketMaker: crank = self.market_instruction_builder.build_crank_instructions([]) settle = self.market_instruction_builder.build_settle_instructions() - (payer + cancellations + place_orders + crank + settle).execute(context, on_exception_continue=True) + (payer + cancellations + place_orders + crank + settle).execute(context) self.pulse_complete.on_next(datetime.now()) except Exception as exception: