Skip to content

Commit

Permalink
Merge pull request #725 from zinggAI/0.4.0
Browse files Browse the repository at this point in the history
added sort column issue #724
  • Loading branch information
sonalgoyal authored Nov 17, 2023
2 parents da3d3f1 + 1fcba7b commit 17f141f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ protected void createModelDocument() throws ZinggClientException {
try {
LOG.info("Model document generation starts");

markedRecords = getMarkedRecords();
unmarkedRecords = getUnmarkedRecords();
markedRecords = getMarkedRecords().sortAscending(ColName.CLUSTER_COLUMN);
unmarkedRecords = getUnmarkedRecords().sortAscending(ColName.CLUSTER_COLUMN);
Map<String, Object> root = populateTemplateData();
writeModelDocument(root);

Expand Down

0 comments on commit 17f141f

Please sign in to comment.