Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/main/java/com/ebay/feed/api/FeedImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,8 @@ private InvokeResponse invokeIteratively(Request request, Path path) {
outStream.flush();
outStream.close();
is.close();

String rlogId = response.header(Constants.RLOG_ID);
LOGGER.debug("RlogId from API response is {}", rlogId);
String lastModifiedHeader = response.header(Constants.LAST_MODIFIED_DATE_HEADER);
String lastModifiedDate = null;
if(!StringUtils.isEmpty(lastModifiedHeader)){
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/ebay/feed/constants/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public class Constants {
public static final String MARKETPLACE_HEADER = "X-EBAY-C-MARKETPLACE-ID";
public static final String CONTENT_TYPE_HEADER = "Content-type";
public static final String ACCEPT_HEADER = "Accept";
public static final String RLOG_ID = "rlogid";

public static final String ALL_ACTIVE = "ALL_ACTIVE";

Expand Down