Skip to content

Commit 9a9bc3c

Browse files
committed
fix: Ensure XXX show returns all fields
`-o wide` should not be necessary for show commands. It is a regression of the structable rework.
1 parent 9100642 commit 9a9bc3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openstack_cli/src/output.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ impl OutputProcessor {
189189

190190
/// Produce output for humans (table) for a single resource
191191
pub fn output_human<T: StructTable>(&self, data: &T) -> Result<(), OpenStackCliError> {
192-
let (headers, table_rows) = structable::build_table(data, &self.config);
192+
let (headers, table_rows) = structable::build_table(data, &OutputConfig::default());
193193

194194
let mut table = Table::new();
195195
table

0 commit comments

Comments
 (0)