Make -d/--default_config flag optional and deprecated#32
Draft
Copilot wants to merge 6 commits into
Draft
Conversation
…-d is supplied Agent-Logs-Url: https://github.com/OpenSimulationInterface/qc-osi-trace/sessions/3f67a849-04c8-4ca6-b69f-2c18366a0dfe Co-authored-by: pmai <91502+pmai@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenSimulationInterface/qc-osi-trace/sessions/3f67a849-04c8-4ca6-b69f-2c18366a0dfe Co-authored-by: pmai <91502+pmai@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenSimulationInterface/qc-osi-trace/sessions/913b681d-c5fd-413a-9cbe-52253a4d5a3e Co-authored-by: pmai <91502+pmai@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenSimulationInterface/qc-osi-trace/sessions/07cce862-6700-4593-b24a-de169832d348 Co-authored-by: pmai <91502+pmai@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenSimulationInterface/qc-osi-trace/sessions/90a7ce78-e1a1-4394-b865-888b578fb083 Co-authored-by: pmai <91502+pmai@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
pmai
April 23, 2026 19:36
View session
pmai
requested changes
Apr 23, 2026
| "-d", | ||
| "--default_config", | ||
| action="store_true", | ||
| help="Deprecated. Retained for backward compatibility. Default configuration is used whenever -c is omitted.", |
Contributor
There was a problem hiding this comment.
Suggested change
| help="Deprecated. Retained for backward compatibility. Default configuration is used whenever -c is omitted.", | |
| help="Deprecated. Default configuration is used whenever -c is omitted.", |
Author
There was a problem hiding this comment.
Done in b65e2b4 — removed "Retained for backward compatibility." from the help string.
Comment on lines
+61
to
+62
| -d, --default_config Deprecated. Retained for backward compatibility. Default configuration is used whenever -c is | ||
| omitted. |
Contributor
There was a problem hiding this comment.
Suggested change
| -d, --default_config Deprecated. Retained for backward compatibility. Default configuration is used whenever -c is | |
| omitted. | |
| -d, --default_config Deprecated. Default configuration is used whenever -c is omitted. |
Comment on lines
+156
to
+157
| -d, --default_config Deprecated. Retained for backward compatibility. Default configuration is used whenever -c is | ||
| omitted. |
Contributor
There was a problem hiding this comment.
Suggested change
| -d, --default_config Deprecated. Retained for backward compatibility. Default configuration is used whenever -c is | |
| omitted. | |
| -d, --default_config Deprecated. Default configuration is used whenever -c is omitted. |
Agent-Logs-Url: https://github.com/OpenSimulationInterface/qc-osi-trace/sessions/c0098133-f301-4796-937e-2707f09699e0 Co-authored-by: pmai <91502+pmai@users.noreply.github.com>
pmai
approved these changes
Apr 23, 2026
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.
Keeps the
-d/--default_configflag, keeping it mutually exclusive with-c/--config_pathto preserve the original CLI contract. The flag is accepted but has no effect — default config is already used whenever-cis omitted.