diff --git a/tests/integration/helpers/helpers.py b/tests/integration/helpers/helpers.py index a9afdf54..208017d7 100644 --- a/tests/integration/helpers/helpers.py +++ b/tests/integration/helpers/helpers.py @@ -280,11 +280,7 @@ async def asyncio_wait_until( def default_create_index_params(request, run_id): - github_actor = os.getenv("GITHUB_ACTOR", None) - user = os.getenv("USER", None) - index_owner = github_actor or user or "unknown" - - index_name = f"{index_owner}-{str(uuid.uuid4())}" + index_name = f"{str(uuid.uuid4())}" tags = index_tags(request, run_id) cloud = get_environment_var("SERVERLESS_CLOUD", "aws") region = get_environment_var("SERVERLESS_REGION", "us-west-2")