Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mjh1 committed Feb 5, 2025
1 parent 618a30c commit 378b50d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Upload artifacts for cutting release
uses: actions/upload-artifact@v4
with:
name: release-artifacts
name: release-artifacts-${{ matrix.platform.name }}-${{ matrix.arch }}
path: releases/

upload:
Expand Down
2 changes: 1 addition & 1 deletion balancer/catabalancer/sysstats.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func GetBandwidthUsage() (float64, error) {

// Parse json output
var data BandwidthData
err = json.Unmarshal([]byte(output), &data)
err = json.Unmarshal(output, &data)
if err != nil {
return -1, err
}
Expand Down

0 comments on commit 378b50d

Please sign in to comment.