fix: unable to create actionClass due to caching issue (#2297)

This commit is contained in:
Matti Nannt
2024-03-20 16:35:08 +01:00
committed by GitHub
parent 4a9f77f56a
commit 33f5da8c94

View File

@@ -87,7 +87,7 @@ export const getActionClassByEnvironmentIdAndName = async (
},
[`getActionClass-${environmentId}-${name}`],
{
tags: [actionClassCache.tag.byNameAndEnvironmentId(environmentId, name)],
tags: [actionClassCache.tag.byNameAndEnvironmentId(name, environmentId)],
revalidate: SERVICES_REVALIDATION_INTERVAL,
}
)();