diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..5dec55d6c --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,5 @@ +# Stanza Community Code of Conduct + +Stanza project follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). + +Please report violations of the Code of Conduct to a Stanza [maintainer](MAINTAINERS.md). \ No newline at end of file diff --git a/MAINTAINERS.md b/MAINTAINERS.md new file mode 100644 index 000000000..27232c0d5 --- /dev/null +++ b/MAINTAINERS.md @@ -0,0 +1,10 @@ +# The Stanza Maintainers + +This file lists the maintainers of the Stanza project. The responsibilities of maintainers are listed in the [GOVERNANCE.md](GOVERNANCE.md) file. + +## Project Maintainers +| Name | GitHub ID | Affiliation | +| ---- | --------- | ----------- | +| [Mike Kelly](mailto:mike.kelly@bluemedora.com) | [mkelly](https://github.com/mkelly) | observIQ | +| [Dan Jaglowski](mailto:dan.jaglowski@bluemedora.com) | [djaglowski](https://github.com/djaglowski) | observIQ | +| [Camden Cheek](mailto:camden.cheek@bluemedora.com) | [camdencheek](https://github.com/camdencheek) | observIQ | \ No newline at end of file diff --git a/operator/builtin/transformer/ratelimit/rate_limit_test.go b/operator/builtin/transformer/ratelimit/rate_limit_test.go index 2872afb27..dcd48d54d 100644 --- a/operator/builtin/transformer/ratelimit/rate_limit_test.go +++ b/operator/builtin/transformer/ratelimit/rate_limit_test.go @@ -48,7 +48,7 @@ func TestRateLimit(t *testing.T) { }() i := 0 - timeout := time.After(101 * time.Millisecond) + timeout := time.After(100 * time.Millisecond) LOOP: for { select { @@ -62,5 +62,5 @@ LOOP: cancel() wg.Wait() - require.InDelta(t, 10, i, 3) + require.InDelta(t, 10, i, 5) }