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
4 changes: 2 additions & 2 deletions org.ektorp/src/main/java/org/ektorp/DbInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class DbInfo implements Serializable {
@JsonProperty("instance_start_time")
long instanceStartTime;
@JsonProperty("purge_seq")
int purgeSeq;
String purgeSeq;
@JsonProperty("update_seq")
@edu.umd.cs.findbugs.annotations.SuppressWarnings(value="SE_BAD_FIELD")
JsonNode updateSeq;
Expand Down Expand Up @@ -82,7 +82,7 @@ public long getInstanceStartTime() {
/**
* @return Number of purge operations
*/
public int getPurgeSeq() {
public String getPurgeSeq() {
return purgeSeq;
}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ public void testGetDbInfo() {
assertEquals(1, info.getDocCount());
assertEquals(1, info.getDocDelCount());
assertEquals(5, info.getDiskFormatVersion());
assertEquals(1, info.getPurgeSeq());
assertEquals("1", info.getPurgeSeq());
assertEquals(4, info.getUpdateSeq());
}

Expand Down