diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2016-07-25 14:43:33 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2016-07-27 15:54:03 +0900 |
commit | bb9988c2368f1986fc0d59cc44fa754f22ca2708 (patch) | |
tree | 08a362cbd49b56e56b37731809e373f55cc3038a /org.eclipse.jgit.pgm/src | |
parent | e27eab26e2027baba7e96a972b90b17f18843467 (diff) | |
download | jgit-bb9988c2368f1986fc0d59cc44fa754f22ca2708.tar.gz jgit-bb9988c2368f1986fc0d59cc44fa754f22ca2708.zip |
LfsProtocolServlet: Pass request and path to getLargeFileRepository
Passing the request and path to the method will allow implementations
to have more control over determination of the backend, for example:
- return different backends for different requests
- accept or refuse requests based on request characteristics
- etc
Change-Id: I1ec6ec54c91a5f0601b620ed18846eb4a3f46783
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.pgm/src')
-rw-r--r-- | org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java index 00bea86c41..c4d95481f1 100644 --- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java +++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java @@ -253,10 +253,10 @@ class LfsStore extends TextBuiltin { private static final long serialVersionUID = 1L; @Override - protected LargeFileRepository getLargeFileRepository() { + protected LargeFileRepository getLargeFileRepository( + LfsRequest request, String path) { return repository; } - }; app.addServlet(new ServletHolder(protocol), PROTOCOL_PATH); |