renalware-core 2.0.52 → 2.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c36923d9a31021d45bae1db60627efefd8b843457cb6a7e102012cb989d254a
|
4
|
+
data.tar.gz: 86a0c83e095d0a70e3dbeb2905e44951e5553a3a7051977071e3ed302daee258
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05e3cebc48a295074ac4ad1727debdee1c11b2a76c3a42d4fb973ad7393e3a2ee2697f7aac3dec3bb286d133a75c4e701f1ec6dd0d0aeef396c6877ffd217754
|
7
|
+
data.tar.gz: 07dd641741d884f975ac577f89ead6ef2ed8a33f11caabcab7ebe1921bbfe8e037f200fe00e5b5bc7ca2a89fecf4e04e008d6347528fb7b3929200943e315c38
|
@@ -22,10 +22,17 @@ module Renalware
|
|
22
22
|
send_patients
|
23
23
|
end
|
24
24
|
print_summary(ms)
|
25
|
+
rescue StandardError => exception
|
26
|
+
notify_exception(exception)
|
27
|
+
raise exception
|
25
28
|
end
|
26
29
|
|
27
30
|
private
|
28
31
|
|
32
|
+
def notify_exception(exception)
|
33
|
+
Engine.exception_notifier.notify(exception)
|
34
|
+
end
|
35
|
+
|
29
36
|
# rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
30
37
|
def send_patients
|
31
38
|
logger.info("Generating XML files for #{patient_ids&.any? ? patient_ids : 'all'} patients")
|
data/lib/renalware/version.rb
CHANGED