Skip to content

Commit

Permalink
Add code of conduct (#143)
Browse files Browse the repository at this point in the history
* Add code of conduct, maintainers list
  • Loading branch information
djaglowski authored Oct 5, 2020
1 parent b4f7b76 commit f787539
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -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).
10 changes: 10 additions & 0 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -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:[email protected]) | [mkelly](https://github.com/mkelly) | observIQ |
| [Dan Jaglowski](mailto:[email protected]) | [djaglowski](https://github.com/djaglowski) | observIQ |
| [Camden Cheek](mailto:[email protected]) | [camdencheek](https://github.com/camdencheek) | observIQ |
4 changes: 2 additions & 2 deletions operator/builtin/transformer/ratelimit/rate_limit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -62,5 +62,5 @@ LOOP:
cancel()
wg.Wait()

require.InDelta(t, 10, i, 3)
require.InDelta(t, 10, i, 5)
}

0 comments on commit f787539

Please sign in to comment.