Add getter for unpackErrorHandler in ReceivePack

The current mechanism for updating the unpack error handler requires
that the error handler is replaced entirely, including communicating
the error to the user. Adding a getter means that delegating
implementations can be constructed so that the error can be processed
before sending to the user, for example for logging.

Change-Id: I4b6f78a041d0f6f5b4076a9a5781565ca3857817
Signed-off-by: Jack Wickham <jwickham@palantir.com>
This commit is contained in:
Jack Wickham 2020-05-22 11:00:18 +01:00 committed by Thomas Wolf
parent 18050b569f
commit 259d2540a3
1 changed files with 10 additions and 0 deletions

View File

@ -2060,6 +2060,16 @@ public void setPostReceiveHook(PostReceiveHook h) {
postReceive = h != null ? h : PostReceiveHook.NULL;
}
/**
* Get the current unpack error handler.
*
* @return the current unpack error handler.
* @since 5.8
*/
public UnpackErrorHandler getUnpackErrorHandler() {
return unpackErrorHandler;
}
/**
* @param unpackErrorHandler
* the unpackErrorHandler to set