Richard van der Klooster

Results 6 comments of Richard van der Klooster

We set the schedules from code. Making changes from Django admin if we change something is not really an option. We would need to make manual changes on multiple servers.

+1, having the same issue. Temporary fix in graph_transitions.py: #app = apps.get_app(field_spec[0]) #models = apps.get_models(app) app = apps.get_app_config(field_spec[0]) models = app.models.values()

We also see this sometimes after upgrading to pytest 8.0.0. Debugged a bit and noticed after running tests for some time at a certain time in pytest-django in method `django_db_modify_db_settings_xdist_suffix`...

I have the same issue now with gemnasium: ``` Traceback (most recent call last): File ".venv/bin/skjold", line 8, in sys.exit(cli()) File ".venv/lib/python3.8/site-packages/click/core.py", line 1157, in __call__ return self.main(*args, **kwargs) File...

I am running into the same problem. Is there a solution or workaround for this?