From cf99669d53779631111608c59dd8fb427f005afe Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Fri, 16 Aug 2024 10:28:23 +0300 Subject: [PATCH] fix typo in comment --- onadata/apps/restservice/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onadata/apps/restservice/tasks.py b/onadata/apps/restservice/tasks.py index 5f310366d0..5d4bc04d39 100644 --- a/onadata/apps/restservice/tasks.py +++ b/onadata/apps/restservice/tasks.py @@ -13,7 +13,7 @@ def call_service_async(instance_pk, latest_json=None): """Async function that calls call_service().""" # Pin to master just incase the Instance was created and is not available - # the replicas + # in the replicas with use_master: try: instance = Instance.objects.get(pk=instance_pk)