wolf_core 1.1.22 → 1.1.23

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: 9a6580041048d921b8c344e53bac88fab4c32f1fe7852ef8bd55cb3b24fede29
4
- data.tar.gz: fce541ab019ed32f821c9801160180b7b37233aa751dc6ad50707d75d9c76376
3
+ metadata.gz: cacc4949c3eb1a63ce1846a95dccdb56fa0702192fc8a27bbea1169dc5a062ba
4
+ data.tar.gz: 76e1b6863e3c9df409dfea37168448c0fc9748603e74ff99c75c9dfa502cc12c
5
5
  SHA512:
6
- metadata.gz: f0fab76a88aef0d4f895d4d5d2cbd5b4946037f17d2f1c34ef8f9b57b2427bd3ce8d81921df17c609302a34592955fdac85f296d7399101ef31db26b1495aa8a
7
- data.tar.gz: 56dce903efb657ddbd752cb2acc0eb49dee889db550e0efe3a0328bb81d6b2c7650b9c9ad73d7be59c807f9ada44620e676d94332254bb75c65f279734f92a17
6
+ metadata.gz: 6aa99693554f1bc8534c24d1bdf28654f0b4befb0c10bbe524cab80323a50fe4f40189954ca3221b888fad9edd295778b870123ab8e224ffcfc492caaacc9032
7
+ data.tar.gz: 624b236450727db1750bc473fbd0b03b10d0091530c595b8e2c9e6e11604de2c78f60d11b756541439ba0f7e3507ee4bb034fa7efddc516f0e923e5c9eb0ae38
@@ -9,7 +9,8 @@ module WolfCore
9
9
  def call
10
10
  process
11
11
  rescue StandardError => e
12
- on_timeout(e) if is_timeout_error?(e) && respond_to?(:on_timeout)
12
+ on_error(e) if respond_to?(:on_error, true)
13
+ on_timeout(e) if is_timeout_error?(e) && respond_to?(:on_timeout, true)
13
14
 
14
15
  common_data = { backtrace: e.backtrace }
15
16
  common_data.merge!(build_result_data) if respond_to?(:build_result_data, true)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.1.22"
4
+ VERSION = "1.1.23"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.22
4
+ version: 1.1.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo