Skip to content

Commit

Permalink
feat: add relocation flag toggling
Browse files Browse the repository at this point in the history
  • Loading branch information
Tochemey committed Feb 21, 2025
1 parent 16ed9a1 commit 509fbd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ The complete Documentation can be found [here](https://tochemey.gitbook.io/goakt

Kindly check out the [examples](https://github.com/Tochemey/goakt-examples)' repository.

## 💪 Support

GoAkt is free and open source. If you need priority support on complex topics or request new features, please consider [sponsorship](https://github.com/sponsors/Tochemey).

## 🌍 Community

You can join these groups and chat to discuss and ask GoAkt related questions on:
Expand Down
2 changes: 1 addition & 1 deletion actor/spawn_option_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func TestSpawnOption(t *testing.T) {
config := &spawnConfig{}
option := WithRelocationDisabled()
option.Apply(config)
require.Equal(t, &spawnConfig{relocatable: true}, config)
require.Equal(t, &spawnConfig{relocatable: false}, config)
})
}

Expand Down

0 comments on commit 509fbd1

Please sign in to comment.