diff options
author | Masaya Suzuki <masayasuzuki@google.com> | 2019-08-06 12:02:23 -0700 |
---|---|---|
committer | Masaya Suzuki <masayasuzuki@google.com> | 2019-10-09 10:25:54 -0700 |
commit | abedaf0d3854f319d0df839851c0e95909aec06a (patch) | |
tree | a6b2d959fb7d4335209f73b331afdd2b94f1a152 /org.eclipse.jgit.http.server/META-INF/MANIFEST.MF | |
parent | b8d9734c0268446cddac281ec762808ac369538e (diff) | |
download | jgit-abedaf0d3854f319d0df839851c0e95909aec06a.tar.gz jgit-abedaf0d3854f319d0df839851c0e95909aec06a.zip |
http: Allow specifying a custom error handler for UploadPack
By abstracting the error handler, this lets a user customize the error
handler for UploadPack. A customized error handler can show a custom
error message to the clients based on the exception thrown from the
hook, create a monitoring system for server errors, or do custom
logging.
Change-Id: Idd3b87d6bd471fef807c0cf1183e904b2886157e
Signed-off-by: Masaya Suzuki <masayasuzuki@google.com>
Diffstat (limited to 'org.eclipse.jgit.http.server/META-INF/MANIFEST.MF')
-rw-r--r-- | org.eclipse.jgit.http.server/META-INF/MANIFEST.MF | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.server/META-INF/MANIFEST.MF b/org.eclipse.jgit.http.server/META-INF/MANIFEST.MF index d4ce149acb..bad1d8a869 100644 --- a/org.eclipse.jgit.http.server/META-INF/MANIFEST.MF +++ b/org.eclipse.jgit.http.server/META-INF/MANIFEST.MF @@ -18,6 +18,7 @@ Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Import-Package: javax.servlet;version="[2.5.0,3.2.0)", javax.servlet.http;version="[2.5.0,3.2.0)", + org.eclipse.jgit.annotations;version="[5.5.0,5.7.0)", org.eclipse.jgit.errors;version="[5.6.0,5.7.0)", org.eclipse.jgit.internal.storage.dfs;version="[5.6.0,5.7.0)", org.eclipse.jgit.internal.storage.file;version="[5.6.0,5.7.0)", |