outposts: fix circular import

This commit is contained in:
Jens Langhammer 2020-12-16 00:00:36 +01:00
parent 42005e7def
commit 835a9aaaf2
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,6 @@ from authentik.lib.models import InheritanceForeignKey
from authentik.lib.sentry import SentryIgnoredException
from authentik.lib.utils.template import render_to_string
from authentik.outposts.docker_tls import DockerInlineTLS
from authentik.outposts.tasks import outpost_service_connection_state
OUR_VERSION = parse(__version__)
OUTPOST_HELLO_INTERVAL = 10
@ -122,6 +121,8 @@ class OutpostServiceConnection(models.Model):
@property
def state(self) -> OutpostServiceConnectionState:
"""Get state of service connection"""
from authentik.outposts.tasks import outpost_service_connection_state
state = cache.get(self.state_key, None)
if not state:
outpost_service_connection_state.delay(self.pk)