From 9662d36ad372e9dfcf863c87e11c855973ecb949 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Wed, 28 Jan 2026 18:31:48 -0300 Subject: [PATCH] comms: fix vault_put indentation --- services/comms/oneoffs/synapse-admin-ensure-job.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/services/comms/oneoffs/synapse-admin-ensure-job.yaml b/services/comms/oneoffs/synapse-admin-ensure-job.yaml index bd397f4..668c74c 100644 --- a/services/comms/oneoffs/synapse-admin-ensure-job.yaml +++ b/services/comms/oneoffs/synapse-admin-ensure-job.yaml @@ -1,12 +1,12 @@ # services/comms/oneoffs/synapse-admin-ensure-job.yaml -# One-off job for comms/synapse-admin-ensure-12. -# Purpose: synapse admin ensure 12 (see container args/env in this file). +# One-off job for comms/synapse-admin-ensure-13. +# Purpose: synapse admin ensure 13 (see container args/env in this file). # Run by setting spec.suspend to false, reconcile, then set it back to true. # Safe to delete the finished Job/pod; it should not run continuously. apiVersion: batch/v1 kind: Job metadata: - name: synapse-admin-ensure-12 + name: synapse-admin-ensure-13 namespace: comms spec: suspend: false @@ -108,8 +108,8 @@ spec: headers={"X-Vault-Token": token, "Content-Type": "application/json"}, method="POST", ) - with urllib.request.urlopen(req, timeout=30) as resp: - resp.read() + with urllib.request.urlopen(req, timeout=30) as resp: + resp.read() def ensure_admin_creds(token: str) -> dict: data = vault_get(token, "comms/synapse-admin")