Events causing instability detected on AEM Instance. While deploying | Community
Skip to main content
mahabubali
Level 2
March 12, 2023
Solved

Events causing instability detected on AEM Instance. While deploying

  • March 12, 2023
  • 1 reply
  • 817 views

Dear community support members,

Hope you are doing well. 

I am having following Package Deployment error in AEM instance. 

We are using Gradle build tool. And during the build process the packageCompose task is successful, but packageDeploy into AEM instance is failing with following repeated console messges. 

-----------------------------------------------------------------------------------------------------------------------------

Checking OSGi bundles on Instance(name='azuredev-author', httpUrl='http://<ipaddress>:61006')
Checking OSGi events on Instance(name='azuredev-author', httpUrl='http://<ipaddress>:61006')
Events causing instability (1) detected on Instance(name='azuredev-author', httpUrl='http://<ipaddress>:61006'):
Event(details='org.osgi.service.component.runtime.ServiceComponentRuntime', received='<ipaddress>' id='249')

 ------------------------------------------------------------------------------------------------------------------------------

Could you please let me know, how to solve the above issue?

I Thank you in advance. 

 

-Mahabub Ali Mohammad.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by lukasz-m

Hi @mahabubali,

According to the Gradle AEM Plugin documentation, by default as part of packageDeploy task instanceAwait is enable. You can disable it adding following parameter package.deploy.awaited=false, so the full command could look like this:

sh gradlew packageDeploy -Ppackage.deploy.awaited=false

 Please explore Gradle AEM Plugin documentation for more details:

1 reply

lukasz-m
Community Advisor
lukasz-mCommunity AdvisorAccepted solution
Community Advisor
April 7, 2023

Hi @mahabubali,

According to the Gradle AEM Plugin documentation, by default as part of packageDeploy task instanceAwait is enable. You can disable it adding following parameter package.deploy.awaited=false, so the full command could look like this:

sh gradlew packageDeploy -Ppackage.deploy.awaited=false

 Please explore Gradle AEM Plugin documentation for more details:

mahabubali
Level 2
August 21, 2023

Thank you @lukasz-m