-
Notifications
You must be signed in to change notification settings - Fork 238
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
e2e
: Switch to the tmpnet fixture
#1027
Conversation
36fe1e8
to
cfb3b4b
Compare
e2e
: Switch warp test to use tmpnet fixture
3a3748a
to
028c479
Compare
e2e
: Switch warp test to use tmpnet fixturee2e
: Switch from ANR to the tmpnet fixture
028c479
to
7f93cec
Compare
e2e
: Switch from ANR to the tmpnet fixturee2e
: Switch to the tmpnet fixture
7f93cec
to
03ee1fe
Compare
d1d7480
to
db6bf98
Compare
a9d3ac5
to
ceada0f
Compare
tests/load/load_test.go
Outdated
nodes, | ||
tmpnet.FlagsMap{ | ||
// The default tmpnet log level (info/debug) induces too much overhead for load testing. | ||
config.LogDisplayLevelKey: "error", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not critical but would be good if we can at least run this with info.
I've tested it to see if works with info here https://github.com/ava-labs/subnet-evm/pull/1104/files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for stdout, which is ignored for the purposes of a tmpnet network.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really the default for tmpnet should be error
too, but I'll handle that separately since I don't want to require another update to avalanchego to get this PR mergeable.
Edit: Maybe it should actually be --log-display-level=off
if we're ignoring it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
1a6fd85
to
a3d799c
Compare
Disabled stdout logging |
Replace the use of ANR in the warp and load testing e2e suites with the tmpnet fixture from avalanchego.
TODO
tmpnet
: Add support for subnets avalanchego#2492