Skip to content

Commit

Permalink
Spell it requestUri to be consistent with queryId
Browse files Browse the repository at this point in the history
  • Loading branch information
thobe committed Jan 17, 2017
1 parent fa984ac commit ac7d019
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -52,7 +52,7 @@ public class QueryStatusResult
/** EXPERIMENTAL: added in Neo4j 3.2 */ /** EXPERIMENTAL: added in Neo4j 3.2 */
public final String clientAddress; public final String clientAddress;
/** EXPERIMENTAL: added in Neo4j 3.2 */ /** EXPERIMENTAL: added in Neo4j 3.2 */
public final String requestURI; public final String requestUri;
/** EXPERIMENTAL: added in Neo4j 3.2 */ /** EXPERIMENTAL: added in Neo4j 3.2 */
public final long cpuTimeMillis; // TODO: we want this field to be of a Duration type (when Cypher supports that) public final long cpuTimeMillis; // TODO: we want this field to be of a Duration type (when Cypher supports that)
/** EXPERIMENTAL: added in Neo4j 3.2 */ /** EXPERIMENTAL: added in Neo4j 3.2 */
Expand Down Expand Up @@ -100,7 +100,7 @@ private QueryStatusResult(
this.connectionDetails = clientConnection.asConnectionDetails(); this.connectionDetails = clientConnection.asConnectionDetails();
this.requestScheme = clientConnection.requestScheme(); this.requestScheme = clientConnection.requestScheme();
this.clientAddress = clientConnection.clientAddress(); this.clientAddress = clientConnection.clientAddress();
this.requestURI = clientConnection.requestURI(); this.requestUri = clientConnection.requestURI();
this.metaData = txMetaData; this.metaData = txMetaData;
this.cpuTimeMillis = cpuTimeMillis; this.cpuTimeMillis = cpuTimeMillis;
this.status = status; this.status = status;
Expand Down

0 comments on commit ac7d019

Please sign in to comment.