- 13 Dec, 2018 1 commit
-
-
Maximilian Gaß authored
-
- 06 Dec, 2018 1 commit
-
-
Stephan Renatus authored
postgres: expose database/sql tunables Fixes #1354. I've not had a need for MaxIdleConns and ConnMaxLifetime myself, but it felt weird to only expose of the three settings.
-
- 04 Dec, 2018 3 commits
-
-
Eric Chiang authored
Documentation/dev-dependencies.md: Update for Go modules
-
Joshua M. Dotson authored
-
Stephan Renatus authored
Makefile: cleanups for newer versions of Go Go 1.9 removed "./..." matching the vendor directory while Go 1.10 added build and test caching. This means we no longer need to grep out vendored matches (except for golint which doesn't implement the same behavior), and we no longer need to pre-build packages with "go build -i". https://golang.org/doc/go1.9#vendor-dotdotdot https://golang.org/doc/go1.10#build
-
- 03 Dec, 2018 4 commits
-
-
Eric Chiang authored
Go 1.9 removed "./..." matching the vendor directory while Go 1.10 added build and test caching. This means we no longer need to grep out vendored matches (except for golint which doesn't implement the same behavior), and we no longer need to pre-build packages with "go build -i". https://golang.org/doc/go1.9#vendor-dotdotdot https://golang.org/doc/go1.10#build
-
Eric Chiang authored
Migrate to go modules
-
Joshua M. Dotson authored
-
Joshua M. Dotson authored
-
- 02 Dec, 2018 1 commit
-
-
Stephan Renatus authored
bump lib/pq taken from @vito's #1342.
-
- 30 Nov, 2018 1 commit
-
-
Stephan Renatus authored
- adapted TestUnmarshalConfig to ensure the fields are read in - added a test to see that at least MaxOpenConns works: - this is only exposed through (*db).Stats() in go 1.11, so this test has a build tag - the other two configurables can't be read back, so we've got to trust that the mechanism works given the one instance that's tested.. Signed-off-by: Stephan Renatus <srenatus@chef.io>
-
- 29 Nov, 2018 3 commits
-
-
Alex Suraci authored
-
Stephan Renatus authored
Revert "retry on serialization errors" This will come back, as outline here: https://github.com/dexidp/dex/pull/1356#issuecomment-442523779
-
Stephan Renatus authored
-
- 27 Nov, 2018 1 commit
-
-
Stephan Renatus authored
Extend the API with a function which updates the client configuration
-
- 26 Nov, 2018 5 commits
-
-
Cosmin Cojocar authored
-
Stephan Renatus authored
Kubernetes docs: clarify steps around use/creation of TLS assets.
-
Stephan Renatus authored
LDAP connector - Document that 'DN' must be in capitals
-
Owen Tuz authored
-
Owen Tuz authored
-
- 23 Nov, 2018 4 commits
- 22 Nov, 2018 1 commit
-
-
Owen Tuz authored
-
- 21 Nov, 2018 1 commit
-
-
Stephan Renatus authored
retry on serialization errors
-
- 20 Nov, 2018 14 commits
-
-
Stephan Renatus authored
storage: nuke standup scripts, adapt dev-integration-test docs
-
Alex Suraci authored
-
Alex Suraci authored
prior to this change, many of the functions in the ExecTx callback would wrap the error before returning it. this made it impossible to check for the error code. instead, the error wrapping has been moved to be external to the `ExecTx` callback, so that the error code can be checked and serialization failures can be retried.
-
Alex Suraci authored
-
Alex Suraci authored
-
Alex Suraci authored
also use a context for the rollback, which is a bit cleaner since it only results in one 'defer', rather than N from the loop
-
Alex Suraci authored
-
Stephan Renatus authored
Signed-off-by: Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
Signed-off-by: Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
Signed-off-by: Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
Signed-off-by: Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
Signed-off-by: Stephan Renatus <srenatus@chef.io>
-
Stephan Renatus authored
pg: support host:port for backwards-compatibility
-
Stephan Renatus authored
Add 'both' option to use team name AND slug in TeamNameField This allows the connector to be configured with both so that both team names and slugs can be returned in the groups. This makes configuring teams in an application a bit more foolproof; we would often have confusion over whether the team name or slug should be given by the user, so it's easier to just allow both, since collisions shouldn't be possible anyway.
-