Joshua Shields

Results 7 comments of Joshua Shields

FYI, this is breaking https://circleci.com/developer/orbs/orb/circleci/aws-eks Seems the build assets are missing for release v5.7.0, which results in a 404 from our build pipeline.

Not sure if this is related to this issue, but the `mailoutbox` fixture does not match the behavior of `mail.outbox` in my test. It's not collecting sent emails: ``` (Pdb)...

I am also getting changes to optional parameters I never set on a subsequent plan. I thought it was also worth noting that the values Terraform says the attributes are...

> @tx0c I think you need `mask-aws-account-id: 'false'` in your `aws-actions/configure-aws-credentials` step @rupertbg I don't think unmasking secrets is a solution to the problem. GitHub Actions should support passing sensitive...

I believe we got this working using `unique=False` with `sqlalchemy_future` as the paginator on `0.11.4`. We are working towards an upgrade path to the latest version. Thank you! Also noting...

Using `unique=False` with `sqlalchemy_future` as the paginator on version 0.11.4, there is no issue. Thanks. This issue can be closed 👍

Workaround, making sure to use a new loop if there could already be a running event loop for the Python process: ``` loop = asyncio.new_event_loop() asyncio.set_event_loop(loop) loop.run_until_complete(jwt_verifier.verify(token)) loop.close() ``` It...