Skip to content

Commit

Permalink
Fix #10656 getProtoecolRequestId
Browse files Browse the repository at this point in the history
Return null for HTTP/1.0 and previous
  • Loading branch information
gregw committed Oct 12, 2023
1 parent fffbab0 commit f0078d2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ public String getRequestId()
@Override
public String getProtocolRequestId()
{
if (getRequest().getConnectionMetaData().getHttpVersion().getVersion() <= HttpVersion.HTTP_1_0.getVersion())
return null;
return getRequest().getId();
}

Expand Down

0 comments on commit f0078d2

Please sign in to comment.