Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build-system/azure-pipeline.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
persistCredentials: true
# Linux or macOS
- bash: |
sudo npm install -g azurite@3.17.1
sudo npm install -g azurite@3.18.0
sudo mkdir azurite
sudo azurite --silent --location azurite --debug azirute/debug.log &
displayName: 'Install and Run Azurite (Linux)'
Expand All @@ -33,7 +33,7 @@ jobs:
AZURE_CONNECTION_STR: UseDevelopmentStorage=true
# Windows
- powershell: |
npm install -g azurite@3.17.1
npm install -g azurite@3.18.0
mkdir azurite
Start-Process azurite.cmd -PassThru
displayName: 'Install and Run Azurite (Windows)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@

namespace Akka.Persistence.Azure.Tests.Hosting
{
[Collection("AzureSpecs")]
public class AzurePersistenceHostingSanityCheck
{
public static async Task<IHost> StartHost(Action<AkkaConfigurationBuilder> testSetup)
{
var conn = Environment.GetEnvironmentVariable("AZURE_CONNECTION_STR");
var conn = Environment.GetEnvironmentVariable("AZURE_CONNECTION_STR") ?? "UseDevelopmentStorage=true";
var host = new HostBuilder()
.ConfigureServices(collection =>
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akka.Persistence.Azure/Akka.Persistence.Azure.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="Akka.Persistence.Query" Version="$(AkkaVersion)" />
<PackageReference Include="Azure.Data.Tables" Version="12.6.1" />
<PackageReference Include="Azure.Identity" Version="1.6.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.12.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.13.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>

Expand Down