Fixed a bug and added redeploy step.
Some checks failed
Build and Push Docker Image / build (push) Successful in 53s
Build and Push Docker Image / docker (push) Failing after 36s

This commit is contained in:
2025-07-06 10:30:31 +02:00
parent a44912ac87
commit f49705b70f
2 changed files with 12 additions and 1 deletions

View File

@ -6,6 +6,11 @@ namespace MessengerApi.Configuration.Parsers
{
public static PersistenceTypes Parse(string value)
{
if (string.IsNullOrWhiteSpace(value))
{
return PersistenceTypes.Sql;
}
return (PersistenceTypes)Enum.Parse(typeof(PersistenceTypes), value, true);
}
}