Hm, this is weird - git appears to be using my apache email address (configured for this particularly repository) as author emails, but then using global settings for the committer address. But, if I run git log --pretty=full locally, then it shows my apache email address for both author and committer lines.
On 9 Mar 2016, at 17:39, [email protected] wrote: > Repository: lucene-solr > Updated Branches: > refs/heads/branch_6x 4e911f2d3 -> 6b2f36389 > > > SOLR-8765: Set parameters correctly in async shard requests > > > Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo > Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/6b2f3638 > Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/6b2f3638 > Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/6b2f3638 > > Branch: refs/heads/branch_6x > Commit: 6b2f3638969e872c704e3d192caec07ad7ef99ed > Parents: 4e911f2 > Author: Alan Woodward <[email protected]> > Authored: Wed Mar 9 17:38:07 2016 +0000 > Committer: Alan Woodward <[email protected]> > Committed: Wed Mar 9 17:39:35 2016 +0000 > > ---------------------------------------------------------------------- > .../apache/solr/client/solrj/request/CollectionAdminRequest.java | 2 ++ > 1 file changed, 2 insertions(+) > ---------------------------------------------------------------------- > > > http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/6b2f3638/solr/solrj/src/java/org/apache/solr/client/solrj/request/CollectionAdminRequest.java > ---------------------------------------------------------------------- > diff --git > a/solr/solrj/src/java/org/apache/solr/client/solrj/request/CollectionAdminRequest.java > > b/solr/solrj/src/java/org/apache/solr/client/solrj/request/CollectionAdminRequest.java > index 4f28408..76eb19f 100644 > --- > a/solr/solrj/src/java/org/apache/solr/client/solrj/request/CollectionAdminRequest.java > +++ > b/solr/solrj/src/java/org/apache/solr/client/solrj/request/CollectionAdminRequest.java > @@ -203,6 +203,8 @@ public abstract class CollectionAdminRequest<T extends > CollectionAdminResponse> > > public AsyncShardSpecificAdminRequest(CollectionAction action, String > collection, String shard) { > super(action); > + this.collection = collection; > + this.shard = shard; > } > > @Deprecated > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
