Skip to content

Commit

Permalink
Merge pull request #299 from getanteon/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
fatihbaltaci authored May 4, 2024
2 parents 0bdb73f + 5da5779 commit eeec4f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
go-version: 1.18.x

- name: Test
run: go test -coverpkg=./... -coverprofile=coverage.txt -parallel 1 -covermode=atomic -short ./... && go tool cover -func coverage.txt
run: cd ddosify_engine && go test -coverpkg=./... -coverprofile=coverage.txt -parallel 1 -covermode=atomic -short ./... && go tool cover -func coverage.txt

- uses: codecov/codecov-action@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
go-version: ${{ matrix.go-version }}

- name: Build
run: go build -race ./...
run: cd ddosify_engine && go build -race ./...

- name: Test
run: go test -parallel 1 -short ./...
run: cd ddosify_engine && go test -parallel 1 -short ./...
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ Import Postman collections with ease and transform them into load testing scenar

## About This Repository

This repository includes the source code for the Anteon Load Engine(Ddosify). You can access Docker Images for the Anteon Engine and Self Hosted on <a href="https://hub.docker.com/u/getanteon" target="_blank">Docker Hub</a>. Since Anteon is a Verified Publisher on Docker Hub, you do not have any pull limits.
This repository includes the source code for the Anteon Load Engine(Ddosify). You can access Docker Images for the Anteon Engine and Self Hosted on <a href="https://hub.docker.com/u/ddosify" target="_blank">Docker Hub</a>. Since Anteon is a Verified Publisher on Docker Hub, you do not have any pull limits.

The [Ddosify Docs](https://github.com/getanteon/anteon/tree/master/ddosify_engine) folder provides information on the installation, usage, and features of the Anteon Load Engine (Ddosify). The [Self-Hosted](https://github.com/getanteon/anteon/tree/master/selfhosted) folder contains installation instructions for the Self-Hosted version. [Anteon eBPF agent (Alaz)](https://github.com/getanteon/alaz) has its own repository.

Expand Down
1 change: 1 addition & 0 deletions ddosify_engine/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ var createHammerFromConfigFile = func(debug bool) (h types.Hammer, err error) {
if err != nil {
return
}
defer f.Close()

byteValue, err := ioutil.ReadAll(f)
if err != nil {
Expand Down

0 comments on commit eeec4f5

Please sign in to comment.