We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77e05e3 commit 5e167fdCopy full SHA for 5e167fd
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## [1.1.4] - 2024-06-09
2
+
3
+### Changed
4
5
+- The `LambdaPunch.start_server!` to now rescue `Errno::EADDRINUSE` errors.
6
7
## [1.1.3] - 2023-04-22
8
9
### Added
lib/lambda_punch/server.rb
@@ -20,6 +20,7 @@ def start!
20
def initialize
21
@queue = Queue.new
22
DRb.start_service self.class.uri, @queue
23
+ rescue Errno::EADDRINUSE
24
end
25
26
lib/lambda_punch/version.rb
@@ -1,3 +1,3 @@
module LambdaPunch
- VERSION = "1.1.3"
+ VERSION = "1.1.4"
0 commit comments