You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be good to have the connector starting up using api contexts default values (for port and path) in case they are not explicitly defined by configuration.
Currently, a runtime with the management-api module, when is missing the web.http.management.port/path settings is throwing:
Failed to start EDC runtime
org.eclipse.edc.spi.EdcException: Failed to start EDC runtime
at app//org.eclipse.edc.junit.extensions.EmbeddedRuntime.boot(EmbeddedRuntime.java:97)
at app//eu.mobility_dataspace.connector.tests.ConnectorTest.shouldStartup(ConnectorTest.java:54)
at [email protected]/java.lang.reflect.Method.invoke(Method.java:580)
at [email protected]/java.util.ArrayList.forEach(ArrayList.java:1597)
at [email protected]/java.util.ArrayList.forEach(ArrayList.java:1597)
Caused by: org.eclipse.edc.spi.EdcException: org.eclipse.edc.spi.EdcException: java.lang.IllegalArgumentException: No PortMapping for contextName 'management' found
at app//org.eclipse.edc.boot.system.runtime.BaseRuntime.onError(BaseRuntime.java:143)
at app//org.eclipse.edc.boot.system.runtime.BaseRuntime.boot(BaseRuntime.java:106)
at app//org.eclipse.edc.junit.extensions.EmbeddedRuntime.lambda$boot$0(EmbeddedRuntime.java:87)
at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
at [email protected]/java.lang.Thread.run(Thread.java:1575)
Caused by: org.eclipse.edc.spi.EdcException: java.lang.IllegalArgumentException: No PortMapping for contextName 'management' found
at app//org.eclipse.edc.web.jersey.JerseyRestService.start(JerseyRestService.java:88)
at app//org.eclipse.edc.web.jersey.JerseyExtension.start(JerseyExtension.java:77)
at app//org.eclipse.edc.boot.system.injection.lifecycle.StartPhase.start(StartPhase.java:34)
at app//org.eclipse.edc.boot.system.injection.lifecycle.ExtensionLifecycleManager.start(ExtensionLifecycleManager.java:78)
at [email protected]/java.util.ArrayList.forEach(ArrayList.java:1597)
at app//org.eclipse.edc.boot.system.ExtensionLoader.bootServiceExtensions(ExtensionLoader.java:76)
at app//org.eclipse.edc.boot.system.runtime.BaseRuntime.bootExtensions(BaseRuntime.java:153)
at app//org.eclipse.edc.boot.system.runtime.BaseRuntime.boot(BaseRuntime.java:92)
... 4 more
Caused by: java.lang.IllegalArgumentException: No PortMapping for contextName 'management' found
at org.eclipse.edc.web.jetty.JettyService.lambda$registerServlet$4(JettyService.java:136)
at java.base/java.util.Optional.orElseThrow(Optional.java:403)
at org.eclipse.edc.web.jetty.JettyService.registerServlet(JettyService.java:136)
at org.eclipse.edc.web.jersey.JerseyRestService.registerContext(JerseyRestService.java:117)
at java.base/java.util.HashMap.forEach(HashMap.java:1430)
at org.eclipse.edc.web.jersey.JerseyRestService.start(JerseyRestService.java:86)
... 11 more
Why Is the Feature Desired?
Are there any requirements?
Solution Proposal
If possible, provide a (brief!) solution proposal.
The text was updated successfully, but these errors were encountered:
Feature Request
It would be good to have the connector starting up using api contexts default values (for
port
andpath
) in case they are not explicitly defined by configuration.Currently, a runtime with the management-api module, when is missing the
web.http.management.port/path
settings is throwing:Why Is the Feature Desired?
Are there any requirements?
Solution Proposal
If possible, provide a (brief!) solution proposal.
The text was updated successfully, but these errors were encountered: