summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum/Plugin/Glue.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Quantum/Plugin/Glue.pm')
-rw-r--r--Bugzilla/Quantum/Plugin/Glue.pm11
1 files changed, 6 insertions, 5 deletions
diff --git a/Bugzilla/Quantum/Plugin/Glue.pm b/Bugzilla/Quantum/Plugin/Glue.pm
index 112514b63..301003740 100644
--- a/Bugzilla/Quantum/Plugin/Glue.pm
+++ b/Bugzilla/Quantum/Plugin/Glue.pm
@@ -53,16 +53,17 @@ sub register {
}
);
- if ($D{HTTPD_IN_SUBDIR}) {
- $app->hook(
- before_dispatch => sub {
+ $app->hook(
+ before_dispatch => sub {
+ if ($D{HTTPD_IN_SUBDIR}) {
my ($c) = @_;
my $path = $c->req->url->path;
$path =~ s{^/bmo}{}s;
$c->req->url->path($path);
}
- );
- }
+ Log::Log4perl::MDC->put(request_id => $c->req->request_id);
+ }
+ );
Bugzilla::Extension->load_all();
if ($app->mode ne 'development') {