Skip to content

Commit

Permalink
DCPERF-423 Fix access to debugger
Browse files Browse the repository at this point in the history
# Before
It was impossible to connect from outside the host. Debugger was listening only on localhost.

# After
Debugger is listening to any host (but firewall can still block it).
  • Loading branch information
mgrzaslewicz committed Jun 18, 2024
1 parent a16c77e commit 480537f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ 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.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

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

0 comments on commit 480537f

Please sign in to comment.