aws_pipes 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/aws_queue +3 -2
- data/lib/aws_pipes/version.rb +1 -1
- metadata +1 -1
data/bin/aws_queue
CHANGED
@@ -62,7 +62,8 @@ begin
|
|
62
62
|
q.send_message msg
|
63
63
|
end
|
64
64
|
end
|
65
|
-
rescue AWS::SQS::Errors::NonExistentQueue
|
66
|
-
warn
|
65
|
+
rescue AWS::SQS::Errors::NonExistentQueue
|
66
|
+
warn "There is no queue named \"#{q_name}\" for your AWS account."
|
67
|
+
warn "To create this and other queues, visit https://console.aws.amazon.com/sqs/"
|
67
68
|
exit 1
|
68
69
|
end
|
data/lib/aws_pipes/version.rb
CHANGED