Skip to content

Commit

Permalink
Merge pull request #642 from kthcloud/dev
Browse files Browse the repository at this point in the history
Maintenance Update
  • Loading branch information
saffronjam authored Jun 3, 2024
2 parents ee35b42 + ad8a091 commit aefd73e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Remember to run the tests before creating a pull request.

#### Acceptance Tests
```bash
go test ./acc/...
go test ./test/acc/...
```
#### End-to-End Tests
```bash
Expand All @@ -38,7 +38,7 @@ until $(curl --output /dev/null --silent --head --fail http://localhost:8080/hea
echo "Waiting for API to start"
sleep 1
done
go test ./e2e/... # Run e2e tests
go test ./test/e2e/... # Run e2e tests
```

## 📚 Docs
Expand Down
2 changes: 1 addition & 1 deletion pkg/services/logger/pod_event_listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func PodEventListener(ctx context.Context) error {

if !exists {
// Clean up the keys
log.Printf("Pod %s not longer exists. Cleaning up keys", podName)
log.Printf("Pod %s no longer exists in zone %s. Cleaning up keys", podName, z.Name)
_ = kvc.Del(LogKey(podName))
_ = kvc.Del(LastLogKey(podName))
_ = kvc.Del(OwnerLogKey(podName))
Expand Down

0 comments on commit aefd73e

Please sign in to comment.