Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DCPERF-423 Fix access to debugger #185

Merged
merged 2 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ Adding a requirement of a major version of a dependency is breaking a contract.
Dropping a requirement of a major version of a dependency is a new contract.

## [Unreleased]
[Unreleased]: https://github.com/atlassian/infrastructure/compare/release-4.29.0...master
[Unreleased]: https://github.com/atlassian/infrastructure/compare/release-4.29.1...master

### Fixed
- Fix remote JVM debugger setup for Jira. Aid DCPERF-432.

## [4.29.1] - 2024-06-17
[4.29.1]: https://github.com/atlassian/infrastructure/compare/release-4.29.0...release-4.29.1

### Fixed
- Fix `JAVA_HOME` in `OpenJDK` and `OpenJDK11`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class EnabledJvmDebug(
return listOf(
JvmArg(
key = "-agentlib:jdwp=",
value = "transport=dt_socket,server=y,suspend=$suspendFlag,address=$port"
value = "transport=dt_socket,server=y,suspend=$suspendFlag,address=*:$port"
)
)
}
Expand Down
Loading