InterruptExecution in control configure_control
See original GitHub issueAs explainded in docs
InterruptExecution
is the exception type to stop the experiment from any control.
The above statement is correct for all the controls, except the configure_control
.
The only way we found is possible to stop the experiment in configure_control
, is to raise BaseException
.
Is there a different way to behave withconfigure_control
?
or this is the only control you should not stop?
Yet we have crucial checks in this control, that if they are not passed we must terminate the experiment.
And secrets are needed to execute those checks, but in other controls, we don’t get them. You can see this related issue #187
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:13 (7 by maintainers)
Top Results From Across the Web
10 Pain-free Steps to Configure an Interrupt Controller
Step #1 – Configure the GPIO pin · Step #2 – Disable interrupts · Step #3 – Clear interrupt flags · Step #4...
Read more >Interrupt Controller - an overview | ScienceDirect Topics
An interrupt controller provides a programmable governing policy that allows software to determine which peripheral or device can interrupt the processor at any ......
Read more >Week 8: buttons and interrupts - ANU School of Computing
configure a timer interrupt to periodically “hijack” the control flow ... “interrupt” the flow of your program, execute a special interrupt ...
Read more >Interrupt Callback Execution - MATLAB & Simulink - MathWorks
MATLAB ® lets you control whether a callback function can be interrupted while it is executing. At times you might want to permit...
Read more >Embedded Systems - Interrupts - Tutorialspoint
Whenever an interrupt occurs, the controller completes the execution of the current instruction and starts the execution of an Interrupt Service Routine ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes.
https://github.com/chaostoolkit/chaostoolkit-lib/issues/183
Np. Thank you for the detailed explanation and catching that limitation.
I’ll try to implement/release that ASAP.