blinkbox-common_logging 0.5.1 → 0.5.2

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Njk4YzRhMzg4NjcyZjVjZWQ4NDRjMjg4ZjM0OTQwM2VjMWMzMzRiNQ==
4
+ YTVjYTc0ZWNiNzNiMDdhNDFkY2YyYTg5OTA5MGQyZTgwMmYyNDYyNw==
5
5
  data.tar.gz: !binary |-
6
- YjAxYTcxMjQ5ZGE1ODY2MDgzNzBhYmZmMDJmNzYwNTY1NmQzNmZjNw==
6
+ ZGU0MGQ2ODllMGRmNjM2N2M1NzdiYmIxMDdkNzliMDgzMDQ2Yjk4Yg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NWM5MTFlNTkwOGMzZTQxZWY4MjZiODQ4ZDhmYWVmOWQzYzhlNWMxZWMyMWMy
10
- ZTFkMDcyOTNjYWY4NGQzZjA0MjcwYjVmMWYxMTAzY2JkMWI5NDM2ZGRiYjQx
11
- YjZjYTQ3YTI2MWI3ZWY2ZGU4YWVmZjdlMTAyZDdjZDNhY2I2YjQ=
9
+ NjI5M2M3YzRiOGU0MjQzMzQyOTAxY2NkODA1NjlhMzY1MGU5NWY1NDgwMzQx
10
+ YzUzNmIxZDRhNzRhZGZhNzcyOGNlMThkM2EyMDY3OGQ2YzM2Mjg1M2U0YTkx
11
+ ZWEwNWRhYTcyZjQxMjI3YTNhNDU3MzNiNjE2YmZkMmZjYmI1YTc=
12
12
  data.tar.gz: !binary |-
13
- MzU1NzIwMDA2MDI1YmNhMGM3NmYyM2RiOTIwOGUwYmY4OTFlYmJmZjk3MDFj
14
- Y2E4YjY5MDU3NTZkYTA0ZDZmODliYTc4ZjRjYjY1M2RmZjNlZjdlMzZkYjYw
15
- OTNiZTU5NmFmNGQ3M2ZkNjBkZDlkNTRiNzQ0ZDViODJmOGFhYWE=
13
+ ZGYyNjBkZGI5Y2M5MjNmOTE2OWVjMTcwMmJmMjI1M2UyMzMzNjdmZDVkZjYy
14
+ Y2ZiZDUzMzA0ZjU2YTU2OGE2MTdiYTcyNDY1ZjRiNGI3MDU4OGI0NjM5Mzdk
15
+ M2QyODRlOTBjMjhhMTI4MDkzYWViYTkzNDUzOWE4NDI1ZTI1Yjc=
@@ -1,5 +1,13 @@
1
1
  # Change log
2
2
 
3
+ ## 0.5.2 (2015-01-29 12:13:21)
4
+
5
+ Unknown graylog server hostname fix
6
+
7
+ ### Bug fixes
8
+
9
+ - Monkey patch to allow execution of code when the given graylog server name is unresolvable.
10
+
3
11
  ## Open Source release (2015-01-28 14:11:21)
4
12
 
5
13
  Today we have decided to publish parts of our codebase on Github under the [MIT licence](LICENCE). The licence is very permissive, but we will always appreciate hearing if and where our work is used!
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.1
1
+ 0.5.2
@@ -79,7 +79,11 @@ module Blinkbox
79
79
  @stdout_logger.send(level, msg)
80
80
  end
81
81
  msg.extend(ExtraHashMethods).shallow! if msg.is_a?(Hash)
82
- super(message_level, msg)
82
+ begin
83
+ super(message_level, msg)
84
+ rescue SocketError
85
+ # Cannot send data to unknown host, ignoring
86
+ end
83
87
  end
84
88
  end
85
89
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blinkbox-common_logging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Hastings-Spital