You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#245 Add the ability to query REST endpoints from Reader module (#297)
* class `Reader` an expect ancestor to all reader, that is able to query the Atum server easily
* class `ServerSetup` to pack Atum server access information
* trait `PartitioningIdProvider` to add ability to easily get Partitioning ID
* `RequestResult[R]` represents an Atum server query response.
* Offered implicits for `MonadError` type class needed for `Reader` and `ReaderWithPartitioningId` - there are `Future`, Cats `IO`
* `AtumPartitions` and `AdditionalData` moved from _Agent_ to _Module_
* `ErrorResponse` received a method to decode from Json based on http status code
* README.md update
---------
Co-authored-by: Ladislav Sulak <laco.sulak@gmail.com>
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -205,7 +205,6 @@ We can even say, that `Checkpoint` is a result of particular `Measurements` (ver
205
205
The journey of a dataset throughout various data transformations and pipelines. It captures the whole journey,
206
206
even if it involves multiple applications or ETL pipelines.
207
207
208
-
209
208
## Usage
210
209
211
210
### Atum Agent routines
@@ -247,6 +246,7 @@ Code coverage wil be generated on path:
247
246
To make this project runnable via IntelliJ, do the following:
248
247
- Make sure that your configuration in `server/src/main/resources/reference.conf`
249
248
is configured according to your needs
249
+
- When building within an IDE sure to have the option `-language:higherKinds` on in the compiler options, as it's often not picked up from the SBT project settings.
0 commit comments