feat: v0.3.5 — full boot working, fresh JWT every boot, it_node_checkin operational

This commit is contained in:
2026-06-07 15:15:48 +02:00
parent 5970edd06a
commit 2720233964
3 changed files with 17 additions and 10 deletions

View File

@@ -92,9 +92,11 @@ class IdentityIoT:
def authenticate(self):
"""Full challenge/response flow. Returns JWT string."""
jwt = self._load_jwt()
if jwt and not self._is_jwt_expired(jwt):
return jwt
#Not using cashing
#jwt = self._load_jwt()
#if jwt and not self._is_jwt_expired(jwt):
# return jwt
node_uid = self._get_node_uid()