Skip to content

Commit

Permalink
Merge pull request #82 from ml054/v5.4
Browse files Browse the repository at this point in the history
v5.4 sync
  • Loading branch information
ml054 authored Dec 1, 2023
2 parents 3d116be + 067fb8f commit 3594b8c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/RavenClient.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

strategy:
matrix:
java-version: [8, 11, 14, 16, 17]
java-version: [8, 11, 14, 16, 17, 21]
serverVersion: ["5.4", "6.0"]
fail-fast: false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void canListRevisionsBin() throws Exception {
session.saveChanges();
}

GetRevisionsBinEntryCommand revisionsBinEntryCommand = new GetRevisionsBinEntryCommand(Long.MAX_VALUE, 20);
GetRevisionsBinEntryCommand revisionsBinEntryCommand = new GetRevisionsBinEntryCommand(0, 20);
store.getRequestExecutor().execute(revisionsBinEntryCommand);

JsonArrayResult result = revisionsBinEntryCommand.getResult();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ public void canServeTimeSeriesFromCache_Rollup() throws Exception {
session.saveChanges();
}

Thread.sleep(1200); // wait for rollups
Thread.sleep(3000); // wait for rollups

try (IDocumentSession session = store.openSession()) {
ISessionDocumentRollupTypedTimeSeries<TimeSeriesTypedSessionTest.StockPrice> ts =
Expand Down Expand Up @@ -608,7 +608,7 @@ public void canIncludeTypedTimeSeries_Rollup() throws Exception {
session.saveChanges();
}

Thread.sleep(1200); // wait for rollups
Thread.sleep(3000); // wait for rollups

try (IDocumentSession session = store.openSession()) {
User user = session.query(User.class)
Expand Down

0 comments on commit 3594b8c

Please sign in to comment.