Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
number571 committed Nov 4, 2024
1 parent 2c8e9b9 commit 5ed4293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,10 @@ func testRunNewNodes(ctx context.Context, httpAddrNode1, tcpAddrNode2, addrServi
1,
)

go func() { _ = runner1.Run(ctx) }()
go func() { _ = runner2.Run(ctx) }()
time.Sleep(time.Second)
go func() { _ = runner1.Run(ctx) }()
time.Sleep(time.Second)
}

func initConfig(
Expand All @@ -111,7 +113,7 @@ func initConfig(
FMessageSizeBytes: (8 << 10),
FWorkSizeBits: 1,
FFetchTimeoutMS: 10_000,
FQueuePeriodMS: 500,
FQueuePeriodMS: 1_000,
},
FLogging: []string{},
FAddress: &hls_config.SAddress{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ func TestIncomingExecHTTP(t *testing.T) {
testutils.TgAddrs[40],
)

time.Sleep(100 * time.Millisecond)

hlsClient := hls_client.NewClient(
hls_client.NewBuilder(),
hls_client.NewRequester(
Expand Down

0 comments on commit 5ed4293

Please sign in to comment.