From 14d630b8682c425880511a2c5ddf520198f55205 Mon Sep 17 00:00:00 2001 From: Fabrice Bacchella <fbacchella@spamcop.net> Date: Sat, 23 May 2015 15:59:28 -0400 Subject: [PATCH] Create web.rewriteSession key for use with tomcat and CAS --- src/main/java/com/gitblit/git/PatchsetReceivePack.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gitblit/git/PatchsetReceivePack.java b/src/main/java/com/gitblit/git/PatchsetReceivePack.java index d9404cb..54ffb7b 100644 --- a/src/main/java/com/gitblit/git/PatchsetReceivePack.java +++ b/src/main/java/com/gitblit/git/PatchsetReceivePack.java @@ -151,6 +151,11 @@ LOGGER.error("failed to determine default branch for " + repository.name, e); } + if (!StringUtils.isEmpty(getRepositoryModel().mergeTo)) { + // repository settings specifies a default integration branch + defaultBranch = Repository.shortenRefName(getRepositoryModel().mergeTo); + } + long ticketId = 0L; try { ticketId = Long.parseLong(branch); -- Gitblit v1.9.1