Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
hoseinzadehashraf committed Jan 15, 2025
1 parent dd8d9b1 commit 2590e1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Olive.Microservices/Microservice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ string BaseResourceUrl

string BaseS3BucketUrl =>
_baseS3BucketUrl ??= Config.Get("Microservice:" + Name + ":S3BucketUrl")
.Or($"https://{Config.Get("Blob:S3:Bucket")}.s3.{Config.Get("Blob:S3:Region").Or("Aws:Region")}.amazonaws.com/")
.Or($"https://{Config.Get("Blob:S3:Bucket")}.s3.{Config.Get("Blob:S3:Region").Or(Config.Get("Aws:Region"))}.amazonaws.com/")
.EnsureEndsWith("/");

string AccessKey =>
Expand Down
2 changes: 1 addition & 1 deletion Olive.Microservices/Olive.Microservices.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.1.119</Version>
<Version>2.1.120</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 2590e1d

Please sign in to comment.