-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(Messages): Improves the performance of the . The list of possible… #680
Merged
Conversation
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
… recipients for messages is now created cyclically in a background job and is immediately available for the frontend. fix(Message): Displays the county or city name from RKI data as recipient and in the recipient selection instead of a technical name. - Extends the `EPSHdSearchClient` with the new method `getAllHds` and the new parameters `withDetails` and `alsoNotConnectedHds`. The parameters are set to `false` to load only the most necessary data. - The `IrisMessageService` creates the list of recipients in a job method and holds this list or an occurred exception in a `Try` instance. - The `name` in `IrisMessageHdContact` is set to the name from RKI data now. - The `ownIrisMessageHdContact` is now cached to avoid too frequent loading of data from the BS. - The job runs with a delay of 15 minutes after the last run. - Includes commons-collections4 to the dependencies. Refs #678
lucky-lusa
approved these changes
Mar 21, 2022
jekutzsche
pushed a commit
that referenced
this pull request
Mar 25, 2022
## [1.5.1-rc.1](v1.5.0...v1.5.1-rc.1) (2022-03-25) ### Bug Fixes * **Messages:** Improves the performance of the . The list of possible recipients for messages is now created cyclically in a background job and is immediately available for the frontend. ([73cda44](73cda44)), closes [#678](#678) [#680](#680) * Removes long deprecated environment variables from `.env.sample`. This variables have had no effect for some time. ([9bf0a55](9bf0a55)), closes [#679](#679) * RPC methods can now be extended with additional parameters while still remaining compatible with legacy RPC clients if default values are used. ([4320b23](4320b23)), closes [iris-connect/iris-backlog#278](https://github.com/iris-connect/iris-backlog/issues/278)
🎉 This PR is included in version 1.5.1-rc.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
jekutzsche
pushed a commit
that referenced
this pull request
Mar 29, 2022
## [1.5.1](v1.5.0...v1.5.1) (2022-03-29) ### Bug Fixes * **Messages:** Improves the performance of the . The list of possible recipients for messages is now created cyclically in a background job and is immediately available for the frontend. ([73cda44](73cda44)), closes [#678](#678) [#680](#680) * Removes long deprecated environment variables from `.env.sample`. This variables have had no effect for some time. ([9bf0a55](9bf0a55)), closes [#679](#679) * RPC methods can now be extended with additional parameters while still remaining compatible with legacy RPC clients if default values are used. ([4320b23](4320b23)), closes [iris-connect/iris-backlog#278](https://github.com/iris-connect/iris-backlog/issues/278) * Updates EPS to version v0.2.6 ([2cd3a4a](2cd3a4a))
🎉 This PR is included in version 1.5.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
… recipients for messages is now created cyclically in a background job and is immediately available for the frontend.
fix(Message): Displays the county or city name from RKI data as recipient and in the recipient selection instead of a technical name.
EPSHdSearchClient
with the new methodgetAllHds
and the new parameterswithDetails
andalsoNotConnectedHds
. The parameters are set tofalse
to load only the most necessary data.IrisMessageService
creates the list of recipients in a job method and holds this list or an occurred exception in aTry
instance.name
inIrisMessageHdContact
is set to the name from RKI data now.ownIrisMessageHdContact
is now cached to avoid too frequent loading of data from the BS.Refs #678