Fix docker error regarding current working directory.#9484
Merged
LuisPovedaCano merged 1 commit intoue4-devfrom Dec 16, 2025
Merged
Fix docker error regarding current working directory.#9484LuisPovedaCano merged 1 commit intoue4-devfrom
LuisPovedaCano merged 1 commit intoue4-devfrom
Conversation
LuisPovedaCano
approved these changes
Dec 16, 2025
berndgassmann
added a commit
to Motor-Ai/carla-simulator-carla
that referenced
this pull request
Jan 2, 2026
* Extend ROS2 support Step 2: Fine grained ServerSynchronization (carla-simulator#9450) * Extend ROS2 support Step 2: Fine grained ServerSynchronization Introduced a fine grained ServerSynchronization mechanism, where each synchonization participant is treated independently and interacts with the synchronization of the carla-server individually. If a client is disconnected (or dies) the synchronization state of all participants registered via that client are dropped, i.e. the server will continue running in case the participants of that client were the only ones demanding synchronous mode. The synchronization interface provides means of a time window, up to which the server is allowed to run. Like this, every client can prevent the carla-server to run too fast depending on their individual speed. There is no sync-master anymore. Every client decides for its own if it requires synchronization or not. Drawback of this change: some existing code might have to be changed (see removal of synchronous_master in generate_traffic.py). * Fix Windows build and smoke tests Update RPC lib version for windows build Ensure tick calls are ignored if sync mode is not active. And prevent client changes of fixed_delta_seconds triggering warning message. * Client needs to wait for next tick on non synchronous mode * Fix libpng (see carlagx's carla-simulator#9469 and berndgassmann's carla-simulator#9451). (carla-simulator#9477) * Fix issues with running the cosmos transfer server docker image due to outdate dependencies (carla-simulator#9456) * fix dockerfile for changes to vllm and transformers (carla-simulator#229) nvidia-cosmos/cosmos-transfer1#229 nvidia-cosmos/cosmos-transfer1#210 * fix for outdated packages, use new commit hash * Fix docker error due to issues regarding the current working directory. (carla-simulator#9484) --------- Co-authored-by: MarcelPiNacy-CVC <169088301+MarcelPiNacy-CVC@users.noreply.github.com> Co-authored-by: 0graph <50416380+0graph@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #
Docker fails to see DockerFile.server due to incorrect WD.
Where has this been tested?
Possible Drawbacks
N/A
This change is