@@ -78,19 +78,19 @@ def th(s: str) -> str:
7878
7979 props .add_row (th ("Project" ), run_plan .project_name )
8080 props .add_row (th ("User" ), run_plan .user )
81- props .add_row (th ("Configuration" ), run_plan .run_spec .configuration_path )
8281 if include_run_properties :
82+ props .add_row (th ("Configuration" ), run_plan .run_spec .configuration_path )
8383 props .add_row (th ("Type" ), run_plan .run_spec .configuration .type )
8484 props .add_row (th ("Resources" ), pretty_req )
85- props .add_row (th ("Max price" ), max_price )
86- props .add_row (th ("Max duration" ), max_duration )
87- if include_run_properties and inactivity_duration is not None : # None means n/a
88- props .add_row (th ("Inactivity duration" ), inactivity_duration )
8985 props .add_row (th ("Spot policy" ), spot_policy )
86+ props .add_row (th ("Max price" ), max_price )
9087 if include_run_properties :
9188 props .add_row (th ("Retry policy" ), retry )
9289 props .add_row (th ("Creation policy" ), creation_policy )
9390 props .add_row (th ("Idle duration" ), idle_duration )
91+ props .add_row (th ("Max duration" ), max_duration )
92+ if inactivity_duration is not None : # None means n/a
93+ props .add_row (th ("Inactivity duration" ), inactivity_duration )
9494 props .add_row (th ("Reservation" ), run_plan .run_spec .configuration .reservation or "-" )
9595
9696 offers = Table (box = None )
0 commit comments