-
Notifications
You must be signed in to change notification settings - Fork 388
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
feat: move standard library initialization to genesis transactions #3168
base: master
Are you sure you want to change the base?
Changes from all commits
a57e99f
80a0420
947435d
530c659
30c0ef5
98b3c91
a7f0e84
63565df
e80c354
197a01c
2f65112
6c9b5b6
3bf22fb
6f90e23
94b2197
dad6992
dda4c7c
d41d5ed
59d9008
3223bf2
bcbc211
d191eed
5389cf6
f6aaa29
c603537
2f65631
ee2b0da
3f9abe1
d351434
b236499
f497d05
50ff186
b6f54c2
694ec88
9c2f3c2
be153b1
f832188
359585a
d98aded
c12f6b3
c106800
fd3286c
2e6f1f2
a15aa7b
d96766d
98e4e4f
f1cfc8e
8aa9b24
66d3e70
ce564b4
f4138d8
df80f36
60c5eeb
435a98c
32a47c8
e0f96c1
62f4f21
57749ce
34a52d2
54d6376
f7c4af1
d776227
1054240
d94c226
44056eb
fca5da2
4674563
f9d214e
c2acb22
c83ecd8
88996bc
ef0d05f
1e333e2
0f9eb5c
3247301
17ac56b
b676fc5
b31dac0
883b1b0
ab76537
03965b0
b58b9e0
4f6686f
73ad347
8b3f1a4
b39cb20
f936f6c
3e506b6
d59dd88
37eecb1
9f128d5
2e1b5df
d43e5b2
606a741
10c4cf4
b88761c
82c4769
8943a68
1231f81
c885024
6ad727e
53fa02b
1c22718
868f941
6200b27
cea9a05
b934ab2
8539d18
57acd8e
b65420d
da28696
a6cbccf
aeff181
a7939bc
80da996
50f9cad
a509eee
2d7d762
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,7 +116,7 @@ func TestStart_Lazy(t *testing.T) { | |
io.SetErr(commands.WriteNopCloser(mockErr)) | ||
|
||
// Create and run the command | ||
ctx, cancelFn := context.WithTimeout(context.Background(), 10*time.Second) | ||
ctx, cancelFn := context.WithTimeout(context.Background(), 20*time.Second) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I organically hate this test :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a constant reminder of the insane tech debt we have, that's preventing us from easily spinning up configurable clusters in unit tests There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As long as it's organic 🥬 ;) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will try to restore the master value on this with opti |
||
defer cancelFn() | ||
|
||
// Set up the command ctx | ||
|
@@ -128,7 +128,7 @@ func TestStart_Lazy(t *testing.T) { | |
}) | ||
|
||
// Set up the retry ctx | ||
retryCtx, retryCtxCancelFn := context.WithTimeout(ctx, 5*time.Second) | ||
retryCtx, retryCtxCancelFn := context.WithTimeout(ctx, 10*time.Second) | ||
defer retryCtxCancelFn() | ||
|
||
// This is a very janky way to verify the node has started. | ||
|
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 fixable I think with @Villaquiranm's PR
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.
Yeah I think I'll wait on it
EDIT: actually I should probably use the same address as other packages, I will address this before merge