Conversation
…ions in build.yml Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenDJ/sessions/cd72be68-ec2a-4fcb-9f38-004638043590 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add --hostname localhost and --trustAll to status commands
Add --hostname localhost and --trustAll to all status command invocations in build.yml
Apr 9, 2026
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenDJ/sessions/25c854fc-0b86-4ae7-9d95-6d433894aa8c Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Member
|
@copilot merge from copilot/fix-status-cli-argument-parsing |
…parsing' into copilot/add-hostname-trustall-status-commands # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit. Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Contributor
Author
Merged in 8c6bdac. The Java fixes from
The |
Copilot
AI
changed the title
Add --hostname localhost and --trustAll to all status command invocations in build.yml
Fix status CLI to accept --hostname, --port, and --trustAll arguments, and add them to all status command invocations in build.yml
Apr 9, 2026
maximthomas
approved these changes
Apr 10, 2026
Add CDDL license header to build.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Several
status/status.batinvocations in the CI workflow were missing--hostname localhostand/or--trustAll, which can cause connection failures against TLS-enabled servers that require explicit host/trust configuration. Additionally, thestatusCLI tool was not accepting--hostnameand--portas valid arguments, causing them to be silently ignored.Changes
CI Workflow (
build.yml)--hostname localhostand--trustAll--hostname localhost(--trustAllwas already present)--hostname localhostand--trustAll--hostname localhostand--trustAll--hostname localhostand--trustAllAll
statuscalls now consistently use:Status CLI (
StatusCliArgumentParser.java)--hostnameand--portfrom the list of accepted arguments, so these flags are now properly parsed when passed on the command line.Status CLI (
StatusCli.java)--hostnameand--portvalues passed on the command line are now honoured instead of being overwritten.Original prompt
This pull request was created from Copilot chat.