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.
This pull request adds two new boolean fields,
metro_routeandroute_aliveness, to the Tenant model and propagates these fields throughout the CLI, program logic, and tests. These fields enable or check routing features for tenants and can be set during tenant creation or updated later. The changes ensure these new options are correctly handled in all relevant code paths, including serialization, deserialization, and validation.Core feature additions:
metro_routeandroute_alivenessfields to theTenantstruct, with full support for serialization, deserialization, and display/debug output. [1] [2] [3] [4] [5] [6]CLI enhancements:
CreateTenantCliCommandandUpdateTenantCliCommandto acceptmetro_routeandroute_alivenessas command-line arguments, with appropriate defaults and optionality. These values are passed through to the program instruction arguments. [1] [2] [3] [4]Instruction and argument propagation:
Testing improvements:
Debugging and display:
DebugandDisplayimplementations for relevant structs to include the new fields for easier troubleshooting and logging. [1] [2] [3]