pre receive hooks are not async

This commit is contained in:
Sebastian Sdorra
2011-10-05 18:46:11 +02:00
parent a6f00f9d4c
commit 02c18998eb

View File

@@ -67,6 +67,6 @@ public abstract class PreReceiveRepositoryHook implements RepositoryHook
@Override
public boolean isAsync()
{
return true;
return false;
}
}