Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v0.14-dev' into feat/proxy-stats
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Mar 5, 2024
2 parents 55705ab + 9749779 commit 33824bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
platforms: all

- name: Set up Docker Build
uses: docker/setup-buildx-action@v3.0.0
uses: docker/setup-buildx-action@v3.1.0

- name: Login to DockerHub
if: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
go-version: "1.22"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.0.0
uses: docker/setup-buildx-action@v3.1.0

- uses: actions/checkout@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion internal/libs/clist/clist.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ to ensure garbage collection of removed elements.
import (
"fmt"

sync "github.com/sasha-s/go-deadlock"
// This is performance-critical code, so we don't use go-deadlock
"sync"
)

// MaxLength is the max allowed number of elements a linked list is
Expand Down

0 comments on commit 33824bc

Please sign in to comment.