Skip to content

Commit 9db918c

Browse files
committed
fix(Solution): Fixed Polly package reference
Signed-off-by: Charles d'Avernas <[email protected]>
1 parent 6668e0c commit 9db918c

File tree

2 files changed

+1
-47
lines changed

2 files changed

+1
-47
lines changed

src/api/Synapse.Api.Application/Synapse.Api.Application.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
<ItemGroup>
4444
<PackageReference Include="IdentityServer4" Version="4.1.2" NoWarn="NU1902" />
4545
<PackageReference Include="IdentityServer4.Storage" Version="4.1.2" NoWarn="NU1902" />
46+
<PackageReference Include="Polly" Version="8.4.1" />
4647
</ItemGroup>
4748

4849
<ItemGroup>

src/core/Synapse.Core/SynapseDefaults.cs

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -611,53 +611,6 @@ public static class Secrets
611611

612612
}
613613

614-
/// <summary>
615-
/// Exposes constants about runtime-related environment variables
616-
/// </summary>
617-
public static class Runtime
618-
{
619-
620-
/// <summary>
621-
/// Gets the prefix for all runtime related environment variables
622-
/// </summary>
623-
public const string Prefix = EnvironmentVariables.Prefix + "RUNTIME_";
624-
625-
/// <summary>
626-
/// Exposes constants about Docker runtime-related environment variables
627-
/// </summary>
628-
public static class Docker
629-
{
630-
631-
/// <summary>
632-
/// Gets the prefix for all Docker runtime related environment variables
633-
/// </summary>
634-
public const string Prefix = Runtime.Prefix + "DOCKER_";
635-
/// <summary>
636-
/// Gets the environment variable used to specify the YAML file used to configure the Docker runner container
637-
/// </summary>
638-
public const string Container = Prefix + "CONTAINER";
639-
640-
}
641-
642-
}
643-
644-
/// <summary>
645-
/// Exposes constants about secrets-related environment variables
646-
/// </summary>
647-
public static class Secrets
648-
{
649-
650-
/// <summary>
651-
/// Gets the prefix for all secrets related environment variables
652-
/// </summary>
653-
public const string Prefix = EnvironmentVariables.Prefix + "SECRETS";
654-
/// <summary>
655-
/// Gets the name of the environment variable used to configure the path to the directory that contains secrets files
656-
/// </summary>
657-
public const string Directory = Prefix + "DIRECTORY";
658-
659-
}
660-
661614
/// <summary>
662615
/// Exposes constants about service account related environment variables
663616
/// </summary>

0 commit comments

Comments
 (0)