1
0
mirror of https://github.com/bitwarden/server synced 2025-12-18 17:23:28 +00:00

Add delete batch for playwright worker cleanup

This commit is contained in:
Matt Gibson
2025-10-10 08:55:31 -07:00
parent ec828943a4
commit a7340c905b
2 changed files with 40 additions and 1 deletions

View File

@@ -65,7 +65,8 @@ public class RecipeService : IRecipeService
var seededData = _databaseContext.SeededData.FirstOrDefault(s => s.Id == seedId);
if (seededData == null)
{
throw new RecipeExecutionException($"Seeded data with ID {seedId} not found");
_logger.LogInformation("No seeded data found with ID {SeedId}, skipping", seedId);
return null;
}
var trackedEntities = JsonSerializer.Deserialize<Dictionary<string, List<Guid>>>(seededData.Data);