Michael Haines

Results 2 comments of Michael Haines

I'm struggling with this issue as well. When I make my repo private, Prismic demands an API key and the API call from the browser fails with a 401. If...

I've been able to reproduce this bug by rapidly running `task.submit()` with a ConcurrentTaskRunner ```py @task() def one_second_task(): time.sleep(1) return 1 @flow( log_prints=True, task_runner=ConcurrentTaskRunner(), ) def no_op_flow( num_tasks: int, task_submit_delay:...