feat: Update pagination to use reactive + various bug fixes and upgrades
- feat: Update pagination to use reactive + various bug fixes and upgrades
Merge request reports
Activity
requested review from @cguindon, @malowe, and @zacharysabourin
assigned to @zacharysabourin
- Resolved by Martin Lowe
- Resolved by Martin Lowe
- Resolved by Martin Lowe
- Resolved by Martin Lowe
- Resolved by Martin Lowe
added 1 commit
- 7c179608 - feat: Integrate async pagination + update imperative pagination to use RestResponse
mentioned in merge request eclipsefdn-working-groups-api!79 (merged)
added 1 commit
- 1e6ff03d - feat: Add testing for MockDataPaginationHandler
added 1 commit
- 45cdb0bb - feat: Convert handler to return a RestResponse + update tests to check headers
requested review from @malowe
I did! I tested this along with this patch: eclipsefdn-working-groups-api!79 (merged)
It can be confirmed by using the
GzipClientRequestFilter
to enable GZIP'd content through RestClients and setting thequarkus.http.enable-compression
config to false. This will cause it to fail (due to being unable to properly deserialize the GZIP content) until the config has been re-enabled.I removed the tests and configs for this since we no longer need to handle to decompression manually. We just need to ensure the
@Compressed
annotation is set on our Restclients and thatquarkus.http.enable-compression
is set to true.