diff options
-rw-r--r-- | plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchExportOperation.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchExportOperation.java b/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchExportOperation.java index 27a6f0eb5ba..7b405ce38c2 100644 --- a/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchExportOperation.java +++ b/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchExportOperation.java @@ -59,7 +59,8 @@ public final class BranchExportOperation extends AbstractOperation { if (branchIds.isEmpty()) { IOseeStatement chStmt = ConnectionHandler.getStatement(); try { - chStmt.runPreparedQuery(String.format(SELECT_BRANCHES, includeArchivedBranches ? "" : "where archived = 0")); + chStmt.runPreparedQuery(10000, + String.format(SELECT_BRANCHES, includeArchivedBranches ? "" : "where archived = 0")); while (chStmt.next()) { branchIds.add(chStmt.getInt("branch_id")); } |