Romain Dorgueil
Romain Dorgueil
I have a script that basically open a tab, plays with a website, close the tab. Loop. On my laptop (OSX), it works just fine. Now when I run that...
Currently the Launcher contains the following code: ```python # dont forget to close browser process atexit.register(_close_process) if self.options.get('handleSIGINT', True): signal.signal(signal.SIGINT, _close_process) if self.options.get('handleSIGTERM', True): signal.signal(signal.SIGTERM, _close_process) if not sys.platform.startswith('win'): #...
Mysql pip install mysqlclient LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip install mysqlclient Postgresql pip install psycopg2-binary
One critical feature to better handle pipelines is to have builtin ways to manage (especially non-fatal) errors. As our executors currently catch errors in execution, it should be pretty straightforward...
``` bonobo.errors.UnrecoverableTypeError Input type changed between calls to . Got Bag(source_currencykey='AED', reporting_currencykey='USD', monthkey='2018M06', effective_start_date=datetime.date(2018, 1, 1), avg=Decimal('0.2722528968396083500000000')) which is not of type . ``` Should say "which is not of...
As a dev, I should be able to pipe the error queue into a error handling subgraph.
As a dev, I should be able to retrieve errors that happened within a node outside, as a queue of errors available from the resulting context. Complexity: - What does...
As a dev, I should be able to retrieve the originating node within the error pipeline. Needs #319 Complexity: - What format? Should this be the context or the actual...
Error prone: ``` def set_output_fields(fields, typename='Bag'): ... ``` Should maybe read `def set_output_fields(fields, *, typename='Bag'):`