server/app/endpoints/confluenceaccount.py [129:140]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return {"found": True}
    else:
        # INFRA-25324: Check infra-reports' userid db as well, but only if we couldn't the userid locally
        async with aiohttp.ClientSession() as client:
            async with client.get(INFRAREPORTS_USERID_CHECK, params={"id": userid}) as resp:
                if resp.status == 200:
                    result = await resp.json()
                    return {"found": result.get("exists", True)}  # Default to True if the backend throws a gnome at us.
                else:
                    return {"success": False, "message": "Your query could not be completed at this point. Please retry later."}

@asfquart.APP.route(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



server/app/endpoints/jiraaccount.py [132:144]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return {"found": True}
    else:
        # INFRA-25324: Check infra-reports' userid db as well, but only if we couldn't the userid locally
        async with aiohttp.ClientSession() as client:
            async with client.get(INFRAREPORTS_USERID_CHECK, params={"id": userid}) as resp:
                if resp.status == 200:
                    result = await resp.json()
                    return {"found": result.get("exists", True)}  # Default to True if the backend throws a gnome at us.
                else:
                    return {"success": False, "message": "Your query could not be completed at this point. Please retry later."}


@asfquart.APP.route(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



