Skip to content

Commit

Permalink
Merge pull request #6 from IliyanIlievPH/2
Browse files Browse the repository at this point in the history
Closes #2
  • Loading branch information
PaterSantyago committed Apr 7, 2020
2 parents c603283 + 8bb00d2 commit 9fd776b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Autofac;
using Autofac;
using JetBrains.Annotations;
using Lykke.HttpClientGenerator;
using Lykke.HttpClientGenerator.Infrastructure;
Expand Down Expand Up @@ -30,7 +30,7 @@ public static class AutofacExtension
if (string.IsNullOrWhiteSpace(settings.ServiceUrl))
throw new ArgumentException("Value cannot be null or whitespace.", nameof(EncryptedFileStorageServiceClientSettings.ServiceUrl));

var clientBuilder = HttpClientGenerator.HttpClientGenerator.BuildForUrl(settings.ServiceUrl)
var clientBuilder = HttpClientGenerator.BuildForUrl(settings.ServiceUrl)
.WithAdditionalCallsWrapper(new ExceptionHandlerCallsWrapper());

var apiKey = Environment.GetEnvironmentVariable("EfsApiKey");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using System.Runtime.CompilerServices;
using System.IO;
Expand All @@ -13,7 +13,7 @@
using Microsoft.Azure.KeyVault;
using Microsoft.Azure.Storage.Blob;

[assembly: InternalsVisibleTo("Lykke.Service.EncryptedFileStorage.Tests")]
[assembly: InternalsVisibleTo("MAVN.Service.EncryptedFileStorage.Tests")]

namespace MAVN.Service.EncryptedFileStorage.DomainServices
{
Expand Down

0 comments on commit 9fd776b

Please sign in to comment.