Closed
Description
#276 introduced a breaking change to the public interface of Queue
. Prior to #276 #signal
was inherited from Notification
where value
is defaulted to nil
if it is not provided.
The new implementation of Queue#signal
does not provide a default. Our implementation calls this method without an argument, and so now we are getting the following exception:
ArgumentError wrong number of arguments (given 0, expected 1)