Skip to content

Commit

Permalink
chore: rename workflow branches to main
Browse files Browse the repository at this point in the history
Catching up the branch renaming.

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
  • Loading branch information
smira committed Oct 3, 2023
1 parent 669a2e5 commit 7a61ad7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

name: Lint
jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

name: Test
jobs:
Expand Down
4 changes: 2 additions & 2 deletions client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ func TestConcurrent(t *testing.T) {

_ = client.Close()

// wait for 20 seconds for all the packets to be received
for i := 0; i < 20; i++ {
// wait for 30 seconds for all the packets to be received
for i := 0; i < 30; i++ {
if atomic.LoadInt64(&totalSent) == atomic.LoadInt64(&totalReceived) {
break
}
Expand Down

0 comments on commit 7a61ad7

Please sign in to comment.