only process Repo Push Requests from IndexV1 if they are enabled
This commit is contained in:
parent
d9781d735c
commit
1fe0d8f4b7
@ -335,8 +335,10 @@ public class IndexV1Updater extends RepoUpdater {
|
|||||||
repoPersister.commit(contentValues, repo.getId());
|
repoPersister.commit(contentValues, repo.getId());
|
||||||
profiler.log("Persited to database.");
|
profiler.log("Persited to database.");
|
||||||
|
|
||||||
processRepoPushRequests(requests);
|
if (repo.pushRequests == Repo.PUSH_REQUEST_ACCEPT_ALWAYS) {
|
||||||
Utils.debugLog(TAG, "Completed Repo Push Requests: " + requests);
|
processRepoPushRequests(requests);
|
||||||
|
Utils.debugLog(TAG, "Completed Repo Push Requests: " + requests);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private int getIntRepoValue(Map<String, Object> repoMap, String key) {
|
private int getIntRepoValue(Map<String, Object> repoMap, String key) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user