surfer190

Results 36 comments of surfer190

Looking at the code they have well [known URLS](https://github.com/miniflux/v2/blob/main/reader/subscription/finder.go#L143) as: ``` knownURLs := map[string]string{ "/atom.xml": "atom", "/feed.xml": "atom", "/feed/": "atom", "/rss.xml": "rss", "/rss/": "rss", } ``` Is there a way...

@Guts You are welcome to close. With the referenced link the update can be achieved. Explicit is better than implicit. Maybe defaulting the created_at feed to be named `rss.xml` and...

So there were 2 things I needed to do: 1. Override the `ROOT_URLCONF` setting to use the public schema URL's `@override_settings(ROOT_URLCONF=settings.PUBLIC_SCHEMA_URLCONF)` 2. I then needed to create the public schema...

Hmmm, so you have to reset the db when updating `SHARED_APPS` according to this issue https://github.com/bernardopires/django-tenant-schemas/issues/525

Running this code now gives: Traceback (most recent call last): File "/hvac_bug/check.py", line 5, in client = hvac.Client(session=session) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/hvac_bug/env/lib/python3.11/site-packages/hvac/v1/__init__.py", line 136, in __init__ self._adapter = adapter( ^^^^^^^^ File...