ListProjects: print projects list using secondary index

Render the list of projects to OutputStream leveraging the
projects secondary index instead of relying on the in-memory cache.

Change-Id: I864e1c3cd63b206c0f9dc76bbaa6de99ddfdc0d4
This commit is contained in:
Luca Milanesio
2019-02-01 21:55:20 +01:00
committed by David Pursehouse
parent 5017ba50ce
commit e3efc1f715
3 changed files with 46 additions and 11 deletions

View File

@@ -41,6 +41,6 @@ public class ListProjectsCommand extends SshCommand {
throw die("--tree and --description options are not compatible.");
}
}
impl.display(out);
impl.displayToStream(out);
}
}