Skip to content

Commit 9d560fe

Browse files
CRX Package Manager Upload: Switch default URL for system ready check to /systemready.json (#266)
1 parent 7ee619b commit 9d560fe

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

changes.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 https://maven.apache.org/xsd/changes-2.0.0.xsd">
2525
<body>
2626

27+
<release version="2.23.4" date="not released">
28+
<action type="update" dev="sseifert" issue="266">
29+
CRX Package Manager Upload: Switch default URL for system ready check to /systemready.json
30+
</action>
31+
</release>
32+
2733
<release version="2.23.2" date="2025-10-14">
2834
<action type="update" dev="sseifert" issue="238">
2935
aemDispatcherFilter Helper: Allow to set empty strings for selectors, extension, suffix.

tooling/conga-aem-maven-plugin/src/main/java/io/wcm/devops/conga/plugins/aem/maven/AbstractContentPackageMojo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ abstract class AbstractContentPackageMojo extends AbstractMojo {
195195
* after installing finishing the upload. This works only for AEMaaCS SDK instances.
196196
*
197197
* <p>
198-
* Expected is an URL like: http://localhost:4502/systemready
198+
* Expected is an URL like: http://localhost:4502/systemready.json
199199
* </p>
200200
*
201201
* <p>
@@ -312,7 +312,7 @@ private String buildSystemReadyUrl() throws MojoExecutionException {
312312
}
313313
// if not set use hostname from serviceURL and add default path to bundle status
314314
String baseUrl = VendorInstallerFactory.getBaseUrl(buildPackageManagerUrl());
315-
return baseUrl + "/systemready";
315+
return baseUrl + "/systemready.json";
316316
}
317317

318318
private String buildPackageManagerInstallStatusUrl() throws MojoExecutionException {

0 commit comments

Comments
 (0)