learningequality / studio

Content curation tools for Kolibri
https://studio.learningequality.org/
MIT License
117 stars 164 forks source link

Conditionalize the JIT setting #4835

Closed bjester closed 2 days ago

bjester commented 2 days ago

Summary

References

https://github.com/learningequality/studio/pull/4834

Reviewer guidance

Local

I verified with no observed issues:

  1. Started up devserver
  2. Signed in
  3. Created a new channel

Remote

Verified in python shell that this works:

>>> from django.db.backends.postgresql.features import DatabaseFeatures
>>> f = DatabaseFeatures(connection)
>>> f.is_postgresql_12
True
>>> f.is_postgresql_13
False
>>> f.is_postgresql_11
True