Dominik Bartenstein
Dominik Bartenstein
I am connecting to multiple RabbitMQ queues for async message processing using `connect_robust`. I mostly followed the [simple_async_consumer example](https://github.com/mosquito/aio-pika/blob/94066fa900d9c08624d936f9b94037640267ac37/docs/source/examples/simple_async_consumer.py) except that I have multiple connections with three queues each at...
When using [Django FSM](https://github.com/viewflow/django-fsm) with the [Django FSM admin mixin](https://github.com/gadventures/django-fsm-admin) the history button is not displayed anymore. ## Analysis - Django FSM admin overrides [change_form.html](https://github.com/gadventures/django-fsm-admin/blob/b17d4a214f20cb565d80770fb4ef90228f82ef88/fsm_admin/templates/fsm_admin/change_form.html) ## Our solution To solve...
Stripe recommends using the `client_reference_id` for reconciling the verification with the internal systems: https://docs.stripe.com/api/identity/verification_sessions/create#create_identity_verification_session-client_reference_id **Describe the solution you'd like** Add VerificationSession.client_reference_id See https://github.com/dj-stripe/dj-stripe/discussions/1529#discussioncomment-8869556
**Describe the bug** As described here https://dj-stripe.dev/dj-stripe/2.7/api_keys/, we got rid of `STRIPE_LIVE_SECRET_KEY` and `STRIPE_TEST_SECRET_KEY`. However when calling [Customer.add_payment_method](https://github.com/dj-stripe/dj-stripe/blob/stable/2.8/djstripe/models/core.py#L1151), [PaymentMethod.attach](https://github.com/dj-stripe/dj-stripe/blob/stable/2.8/djstripe/models/payment_methods.py#L1164) is called without explicit `api_key` param. Fallback is `djstripe_settings.STRIPE_SECRET_KEY`, which will...
**Describe the bug** After having upgraded from dj-stripe 2.8.4 to 2.9.0b0, the Stripe Identity verification session webhook event started failing with the following error: `stripe._error.PermissionError: Request req_xyz: To access sensitive...
**Describe the bug** ``` Traceback (most recent call last): File "/home/zemtu/django-env-py3.11/lib/python3.11/site-packages/djstripe/models/base.py", line 670, in _create_from_stripe_object instance = cls.stripe_objects.get(id=id_) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/zemtu/django-env-py3.11/lib/python3.11/site-packages/django/db/models/manager.py", line 87, in manager_method return getattr(self.get_queryset(), name)(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...