Merge pull request #851 from nofusscomputing/850-fix-itim-validation-failure
This commit is contained in:
@ -1,3 +1,5 @@
|
|||||||
|
import json
|
||||||
|
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.signals import post_delete
|
from django.db.models.signals import post_delete
|
||||||
@ -355,6 +357,10 @@ class Cluster(TenancyObject):
|
|||||||
|
|
||||||
if self.config:
|
if self.config:
|
||||||
|
|
||||||
|
if isinstance(self.config, str):
|
||||||
|
self.config = json.loads(self.config)
|
||||||
|
self.save()
|
||||||
|
|
||||||
rendered_config.update(
|
rendered_config.update(
|
||||||
self.config
|
self.config
|
||||||
)
|
)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
django==5.1.9
|
django==5.1.10
|
||||||
django-cors-headers==4.4.0
|
django-cors-headers==4.4.0
|
||||||
|
|
||||||
django-debug-toolbar==5.1.0
|
django-debug-toolbar==5.1.0
|
||||||
|
Reference in New Issue
Block a user