Skip to content

Commit 979f1bd

Browse files
committed
Update examples to libstored v2.1.0
1 parent e76590e commit 979f1bd

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/Arq/LibStored.Net.Arq.AppHost/AppHost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var builder = DistributedApplication.CreateBuilder(args);
44

5-
const string libstoredVersion = "2.0.0";
5+
const string libstoredVersion = "2.1.0";
66
var arq = builder.AddDockerfile("libstored-arq", "../LibStored.Arq/", "Dockerfile")
77
.WithImage("demcon/libstored-arq-example")
88
.WithImageTag(libstoredVersion)

examples/Arq/LibStored.Net.Arq.Console/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
109109
bool connected = false;
110110
arqLayer.EventOccurred += (_, e) =>
111111
{
112-
_logger.LogInformation("Arc Event: {Event}", e.Event);
112+
_logger.LogInformation("Arq Event: {Event}", e.Event);
113113
if (e.Event is ArqEvent.Connected or ArqEvent.Reconnect)
114114
{
115115
connected = true;

examples/Sync/LibStored.Net.Example.AppHost/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
builder.AddDockerComposeEnvironment("docker-compose");
1414

15-
const string libstoredVersion = "2.0.0";
15+
const string libstoredVersion = "2.1.0";
1616
var sync = builder.AddDockerfile("libstored", ".", "Dockerfile")
1717
.WithImage("demcon/libstored")
1818
.WithImageTag(libstoredVersion)

0 commit comments

Comments
 (0)