-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added retry mechanism for Tags Client (#6)
- Loading branch information
1 parent
aa2ef0e
commit 2219d40
Showing
3 changed files
with
27 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,32 @@ | ||
global using ACR_SyncTool.DockerClient.Authentication; | ||
global using ACR_SyncTool.DockerClient; | ||
global using ACR_SyncTool.DockerClient.Authentication; | ||
global using ACR_SyncTool.DockerClient.Extensionis; | ||
global using ACR_SyncTool.DockerClient.OAuth; | ||
global using ACR_SyncTool.DockerClient; | ||
global using ACR_SyncTool.Models; | ||
global using Azure.Containers.ContainerRegistry; | ||
global using Azure.Identity; | ||
global using Docker.DotNet.Models; | ||
global using Docker.DotNet; | ||
global using Microsoft.Extensions.Configuration.Json; | ||
global using Docker.DotNet.Models; | ||
global using Microsoft.Extensions.Configuration; | ||
global using Microsoft.Extensions.Configuration.Json; | ||
global using Microsoft.Extensions.DependencyInjection; | ||
global using Microsoft.Extensions.Hosting; | ||
global using Microsoft.Extensions.Logging; | ||
global using Polly; | ||
global using System; | ||
global using System.Collections.Generic; | ||
global using System.Diagnostics; | ||
global using System.IO; | ||
global using System.Linq; | ||
global using System.Net; | ||
global using System.Net.Http; | ||
global using System.Net.Http.Headers; | ||
global using System.Net.Http.Json; | ||
global using System.Net.Http; | ||
global using System.Net; | ||
global using System.Security.Authentication; | ||
global using System.Security.Cryptography.X509Certificates; | ||
global using System.Text.Json.Serialization; | ||
global using System.Text; | ||
global using System.Text.Json; | ||
global using System.Text.Json.Serialization; | ||
global using System.Text.RegularExpressions; | ||
global using System.Text; | ||
global using System.Threading.Tasks; | ||
global using System.Threading; | ||
global using System; | ||
global using System.Threading.Tasks; |