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
When running end-to-end tests based on EmbeddedRuntime on a Windows machine, they fail.
Expected Behavior
End-to-end tests based on EmbeddedRuntime run successfully on Windows machines.
Observed Behavior
The data plane and control plane do not start correctly(only with few service extensions) because the classpath is read incorrectly.
Steps to Reproduce
Run any tests based on EmbeddedRuntime on Windows
Context Information
Used version [e.g. EDC v.0.10.0]
OS: [Windows]
Possible Implementation
In ClasspathReader.class when splitting the classpath, use the default system separator obtained from System.getProperty("path.separator") instead of a hard-coded value.
The text was updated successfully, but these errors were encountered:
Bug Report
Describe the Bug
When running end-to-end tests based on
EmbeddedRuntime
on a Windows machine, they fail.Expected Behavior
End-to-end tests based on
EmbeddedRuntime
run successfully on Windows machines.Observed Behavior
The data plane and control plane do not start correctly(only with few service extensions) because the classpath is read incorrectly.
Steps to Reproduce
Run any tests based on
EmbeddedRuntime
on WindowsContext Information
Possible Implementation
In ClasspathReader.class when splitting the classpath, use the default system separator obtained from
System.getProperty("path.separator")
instead of a hard-coded value.The text was updated successfully, but these errors were encountered: