Compare commits
2 Commits
v0.9.5
...
8b4bb890be
Author | SHA1 | Date | |
---|---|---|---|
8b4bb890be | |||
e841e11168 |
5
TODO.md
5
TODO.md
@@ -1,14 +1,15 @@
|
||||
# TODO
|
||||
|
||||
- [ ] Add ability to initialize OTEL early (before app runs)
|
||||
- [ ] Spruce up the README
|
||||
- [ ] Create generic interface for implenting a service
|
||||
- [ ] Create generic interface for implementing a service
|
||||
- [ ] Create config sample not called demo, so it is more easily reused
|
||||
- [ ] Expand config test case to cover GRPC config
|
||||
- [ ] Expand tracing
|
||||
|
||||
## Done
|
||||
|
||||
- [x] Test and troubleshoot GRPC Gateway supprot
|
||||
- [x] Test and troubleshoot GRPC Gateway support
|
||||
- [x] Finish implementing GRPC service support
|
||||
- [x] Unit tests
|
||||
- [x] Pattern for extending config
|
||||
|
@@ -55,7 +55,7 @@ func handleHealthCheckFunc(ctx context.Context, hcFuncs ...opts.HealthCheckFunc)
|
||||
}
|
||||
|
||||
func dummyHealthCheck(ctx context.Context) error {
|
||||
workFor := rand.Intn(750)
|
||||
workFor := rand.Intn(740) + 10 // ensure positive
|
||||
ticker := time.NewTicker(time.Duration(time.Duration(workFor) * time.Millisecond))
|
||||
|
||||
select {
|
||||
|
Reference in New Issue
Block a user