-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MODFEE-264: Batching for Financial Transactions Detail Report (#244)
* MODFEE-264 Batching for Financial Transactions Detail Report * MODFEE-264 Fix existing tests * MODFEE-264 Minor refactoring * MODFEE-264 Minor refactoring * MODFEE-264 Remove validation of UUIDs * MODFEE-264 Improve long query performance, more logs * MODFEE-264 Fetch actions using index * MODFEE-264 Fetch policies by distinct IDs * MODFEE-264 Small performance optimization * MODFEE-264 Fix code smell (cherry picked from commit 3ad52c5)
- Loading branch information
1 parent
47676f8
commit acbeaf6
Showing
23 changed files
with
916 additions
and
572 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
src/main/java/org/folio/rest/exception/http/HttpGetByIdException.java
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
src/main/java/org/folio/rest/exception/http/HttpGetException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.folio.rest.exception.http; | ||
|
||
import io.vertx.core.buffer.Buffer; | ||
import io.vertx.core.http.HttpMethod; | ||
import io.vertx.ext.web.client.HttpResponse; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class HttpGetException extends HttpException { | ||
|
||
public HttpGetException(String url, HttpResponse<Buffer> response) { | ||
super(HttpMethod.GET, url, response); | ||
} | ||
} |
Oops, something went wrong.