Skip to content

Commit

Permalink
updated README, releases
Browse files Browse the repository at this point in the history
  • Loading branch information
andboson committed Jul 30, 2022
1 parent b220eb3 commit 0c7b2ec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
# build and publish in parallel: linux/amd64, linux/arm64, windows/amd64, darwin/amd64, darwin/arm64
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
goarch: [amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,10 @@ GLOBAL OPTIONS:

```shell
make all
```
```

### See also

* https://github.com/mercury2269/sqsmover
* https://github.com/prashanthpai/sqscat
* https://github.com/farbodsalimi/go-sqs-wrapper
4 changes: 0 additions & 4 deletions internal/wrappers/aws/sqs.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,6 @@ func NewSQSPoller(params SQSParam) (SQSPoller, error) {
return nil, errors.Wrap(err, "error getting total number of messages from AWS SQS queue URL")
}

if s.stopOnTotal && s.totalMessages == 0 {
return s, nil
}

return s, nil
}

Expand Down

0 comments on commit 0c7b2ec

Please sign in to comment.