Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

functional: run tests with embedded etcd, add logger field #9572

Merged
merged 34 commits into from
Apr 17, 2018
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
575cf94
functional/rpcpb: add "*Etcd.EmbedConfig", and logger fields
gyuho Apr 15, 2018
3312810
functional/agent: handle "embed.Etcd", logger sync
gyuho Apr 15, 2018
82e84a0
pkg/logutil: add "NewGRPCLoggerV2FromZap", "NewRaftLogger"
gyuho Apr 15, 2018
041b906
*: configure server logger
gyuho Apr 15, 2018
d5d4025
CHANGELOG-3.4: highlight logger change
gyuho Apr 15, 2018
f879c1d
integration: use default logger "capnslog"
gyuho Apr 15, 2018
bdbed26
etcdserver: support structured logging
gyuho Apr 16, 2018
0dad8ab
pkg: support structured logger
gyuho Apr 16, 2018
c00c6cb
mvcc: support structured logger
gyuho Apr 16, 2018
fdbedac
wal: support structured logger
gyuho Apr 16, 2018
c68f625
rafthttp: support structured logger
gyuho Apr 16, 2018
ce8348e
raftsnap: support structured logger
gyuho Apr 16, 2018
f57fa6a
auth: support structured logger
gyuho Apr 16, 2018
d1c7d40
snapshot: support structured logger
gyuho Apr 16, 2018
6dbce6b
clientv3,etcdctl: support structured logger
gyuho Apr 16, 2018
9063805
contrib/tools: support structured logger
gyuho Apr 16, 2018
a7fd274
integration: support structured logger
gyuho Apr 16, 2018
c712e08
embed,etcdmain: support structured logger
gyuho Apr 16, 2018
677894b
functional/agent: support embedded etcd
gyuho Apr 16, 2018
f34c5dc
functional/tester: run tests with embedded etcd
gyuho Apr 16, 2018
2bd88e3
pkg/transport: check nil logger
gyuho Apr 16, 2018
38e32a1
snapshot: ignore server logs
gyuho Apr 16, 2018
cc77874
embed: support "io-discard" for logging, fix racey logging setup
gyuho Apr 16, 2018
35a80bc
integration,embed: ignore embed log output
gyuho Apr 16, 2018
d1c2ae8
functional/tester: handle "raft.ErrProposalDropped"
gyuho Apr 16, 2018
2ee2a96
functional/tester: use binary for tests for now
gyuho Apr 16, 2018
f63b5c1
functional/agent: fix etcd exec path check
gyuho Apr 16, 2018
c716bea
CHANGELOG-3.4: highlight WAL changes
gyuho Apr 16, 2018
b7ce6b7
Documentation/upgrades: highlight wal, embed changes
gyuho Apr 16, 2018
ae9ccd8
etcdctl/ctlv3: fix snapshot command e2e tests
gyuho Apr 17, 2018
92c3274
tests/e2e: fix TestIssue6361
gyuho Apr 17, 2018
a3b9d82
tests/e2e: fix gateway tests
gyuho Apr 17, 2018
1c44293
tests/e2e: comment out TestEtcdCorruptHash debugging lines
gyuho Apr 17, 2018
18b3e45
*: support --log-output=discard
gyuho Apr 17, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tests/e2e: fix gateway tests
Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
  • Loading branch information
gyuho committed Apr 17, 2018
commit a3b9d828edec743115c62863cbd5993881d78463
2 changes: 1 addition & 1 deletion tests/e2e/gateway_test.go
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ func startGateway(t *testing.T, endpoints string) *expect.ExpectProcess {
if err != nil {
t.Fatal(err)
}
_, err = p.Expect("tcpproxy: ready to proxy client requests to")
_, err = p.Expect("ready to proxy client requests")
if err != nil {
t.Fatal(err)
}