...
Go to
Audit
page where you can look for entries related to CMJ operations. You can filter by time range to locate recent activity. Audit LoggingSearch for an entry with a message similar to:
Code Block Started deployment of configuration snapshot '{snapshot configuration name}'
Where
{snapshot configuration name}
is the name of your configuration snapshot.Check the timestamp and details provided in the log entry. This will indicate whether the deployment is still in progress or has encountered any issues.
...
If a deployment fails due to an ongoing operation, you'll typically see an error message indicating that another deployment is already in progress.
Alongside this message, you'll find the unique Operation ID associated with the running deployment.
Use the provided operation ID to construct a URL for accessing CMJ's REST API endpoint. For more information check our REST API documentation - https://appfire.atlassian.net/wiki/spaces/CMJ/pages/197955929/REST+API+Configuration+Manager#Check-the-deployment-status
Example URL format:
Code Block |
---|
http://host:port/context/rest/configuration-manager/1.0/deploymentdeployments/{currentOperationID} |
Replace {currentOperationID}
with the operation ID obtained from the failed deployment message.
...
Code Block |
---|
http://localhost:2990/jira/rest/configuration-manager/1.0/deploymentdeployments/{currentOperationID} |
Info |
---|
Context Path The example above specifies a context path of “/jira”. Keep in mind that the context path may be different or not present for your installation of Jira. |
...