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
Before dumping container, the paths are replaced in Kernel::removeAbsolutePathsFromContainer method. When the files are stored under /app (I use that as mounting point for shared folder on my VM), the paths get incorrectly replaced with '/app'.__DIR __. Probably because regex assumed there'd be only one /app in the path.
The text was updated successfully, but these errors were encountered:
This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes#10979).
Discussion
----------
Make rootPath part of regex greedy
- Fixes#10977
- Also replaced `isset() && true` with simple `!empty()` which is equivalent.
Commits
-------
31da839 Make rootPath part of regex greedy
Before dumping container, the paths are replaced in Kernel::removeAbsolutePathsFromContainer method. When the files are stored under /app (I use that as mounting point for shared folder on my VM), the paths get incorrectly replaced with
'/app'.__DIR __
. Probably because regex assumed there'd be only one /app in the path.The text was updated successfully, but these errors were encountered: