[Pharo-users] Disable halt and breakpoints globally

2020-08-18 Thread Esteban Maringolo
Hi,

I was bit by a bug in production I couldn't identify and it ended up
being a lost halt in the code that was hanging my whole image. So no
bug at all, a feature :-)

Is there a way to disable the #halt and breakpoints?
This way I could add such an expression (if existent) to my server
startup and avoid issues like this.

Regards!

Esteban A. Maringolo



Re: [Pharo-users] Disable halt and breakpoints globally

2020-08-18 Thread Tim Mackinnon
Hi Esteban - its a good question (and I'm intrigued what can be done) - but for 
production aren't you automatically building a fresh image with a CI system... 
its pretty easy to do these days and this would stop that. Additionally you 
could add something to search for self halt, as a build step and fail your 
build on a non-zero result as well.

Tim

On Tue, 18 Aug 2020, at 9:46 PM, Esteban Maringolo wrote:
> Hi,
> 
> I was bit by a bug in production I couldn't identify and it ended up
> being a lost halt in the code that was hanging my whole image. So no
> bug at all, a feature :-)
> 
> Is there a way to disable the #halt and breakpoints?
> This way I could add such an expression (if existent) to my server
> startup and avoid issues like this.
> 
> Regards!
> 
> Esteban A. Maringolo
> 
>