@@ 64,7 64,7 @@ class CustomerRepo
Tel = Struct.new(:tel) do
def keys(redis)
redis.get("catapult_jid-#{tel}").then do |jid|
- raise NotFound, "No jid" unless jid.to_s =~ /\Acustomer_/
+ raise NotFound, "No jid for '#{tel}'" unless jid.to_s =~ /\Acustomer_/
JID.for(jid).keys(redis, tel: tel)
end