Skip to content

Commit f4e491b

Browse files
authored
Merge branch 'main' into feature/dynamodb
2 parents a4aa902 + c427b79 commit f4e491b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

adapter/dynamodb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ func (d *DynamoDBServer) handle(w http.ResponseWriter, r *http.Request) {
289289
}
290290

291291
func serveDynamoHealthz(w http.ResponseWriter, r *http.Request) bool {
292-
if r == nil || r.URL == nil || r.URL.Path != dynamoHealthPath {
292+
if r.URL.Path != dynamoHealthPath {
293293
return false
294294
}
295295

jepsen/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:source-paths ["src" "redis/src"]
55
:jvm-opts ["-Xmx4g" "-Djava.awt.headless=true"]
66
:dependencies [[org.clojure/clojure "1.11.1"]
7-
[jepsen "0.3.10"]
7+
[jepsen "0.3.11"]
88
[com.taoensso/carmine "3.5.0"]
99
[slingshot "0.12.2"]
1010
[redis.clients/jedis "5.1.0" :exclusions [org.slf4j/slf4j-api]]

monitoring/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
- "host.docker.internal:host-gateway"
1313

1414
grafana:
15-
image: grafana/grafana:12.2.0
15+
image: grafana/grafana:12.4.1
1616
depends_on:
1717
- prometheus
1818
ports:

0 commit comments

Comments
 (0)