Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
josephcummings committed Apr 2, 2024
1 parent b4667b6 commit 99bdb2c
Show file tree
Hide file tree
Showing 18 changed files with 756 additions and 265 deletions.
14 changes: 14 additions & 0 deletions samples/Playground/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
services:
esdb-local:
image: eventstore/eventstore:24.2.0-alpha-arm64v8
environment:
EVENTSTORE_INSECURE: true
EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP: true
ports:
- "2113:2113"
jaeger:
image: jaegertracing/opentelemetry-all-in-one
ports:
- "13133:13133"
- "16686:16686"
- "4317:55680"
10 changes: 5 additions & 5 deletions src/EventStore.Client.Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ public static class Exceptions {
}

public static class Metadata {
public const string Type = "type";
public const string Created = "created";
public const string ContentType = "content-type";
public static readonly string[] RequiredMetadata = { Type, ContentType };
public const string Type = "type";
public const string Created = "created";
public const string ContentType = "content-type";
public static readonly string[] RequiredMetadata = { Type, ContentType };

public static class ContentTypes {
public const string ApplicationJson = "application/json";
Expand All @@ -58,4 +58,4 @@ public static class Headers {
public const string ConnectionName = "connection-name";
public const string RequiresLeader = "requires-leader";
}
}
}
Loading

0 comments on commit 99bdb2c

Please sign in to comment.