Skip to content

Commit 0078226

Browse files
Merge 24.11 to develop
2 parents 5ec10da + ea0f3a2 commit 0078226

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

ehr/resources/pipeline/install.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
##
66

77
#installs required packages for populateKinship.r
8-
install.packages("kinship2", "Rlabkey", "getopt", "Matrix", "pedigree", dependencies=TRUE);
8+
install.packages(c("kinship2", "Rlabkey", "getopt", "Matrix", "pedigree"), dependencies=TRUE);

ehr/src/org/labkey/ehr/pipeline/GeneticCalculationsImportTask.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,13 +306,13 @@ else if (kinshipTable.getSqlDialect().isPostgreSQL())
306306

307307
if (lineNum % 250000 == 0)
308308
{
309-
log.info("imported " + lineNum + " rows");
309+
log.info("imported " + String.format("%,d", lineNum) + " rows");
310310
}
311311
}
312312

313313
stmt.executeBatch();
314314
transaction.commit();
315-
log.info("Inserted " + lineNum + " rows into ehr.kinship");
315+
log.info("Inserted " + String.format("%,d", lineNum) + " rows into ehr.kinship");
316316
}
317317
}
318318
catch (RuntimeSQLException | SQLException | IOException e)
@@ -705,7 +705,7 @@ private static void processInbreeding(Container c, User u, File pipelineDir, Log
705705

706706
transaction.commit();
707707
}
708-
log.info("Inserted " + lineNum + " rows into inbreeding coefficients table");
708+
log.info("Inserted " + String.format("%,d", lineNum) + " rows into inbreeding coefficients table");
709709

710710
}
711711
catch (DuplicateKeyException | SQLException | IOException | QueryUpdateServiceException e)

ehr/test/src/org/labkey/test/pages/ehr/NotificationAdminPage.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,11 @@ public void clickManuallyTriggerEmail(String name)
111111

112112
public void addManageUsers(String notification, String user)
113113
{
114-
log("Adding " + user + "to" + notification);
115-
notification = notification.replace(" ", "");
116-
notification = "manageUser_" + notification;
117-
clickAndWait(Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups"), 0);
114+
log("Adding " + user + " to" + notification);
115+
notification = "manageUser_" + notification.replace(" ", "");
116+
Locator notificationLoc = Locator.tagWithAttributeContaining("a", "id", notification).withText("Manage Subscribed Users/Groups");
117+
scrollIntoView(waitForElement(notificationLoc)).click();
118118
_ext4Helper.selectComboBoxItem("Add User Or Group:", user);
119119
clickButton("Close", 0);
120-
121120
}
122121
}

0 commit comments

Comments
 (0)