Sha256: 582c73526cbb5e3501e271d920ac022d1ecb395014e05c1ca91f57cca8d62d82

Contents?: true

Size: 819 Bytes

Versions: 14

Compression:

Stored size: 819 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8

__dir = File.join(File.dirname(File.expand_path(__FILE__)), "..")
require File.join(__dir, "example_helper")

EM.run do
  AMQ::Client::EventMachineClient.connect(:port     => 5672,
                                          :vhost    => "/amq_client_testbed",
                                          :user     => "amq_client_gem",
                                          :password => "a password that is incorrect #{Time.now.to_i}", :on_possible_authentication_failure => Proc.new { |settings|
                                            puts "Authentication failed, as expected, settings are: #{settings.inspect}"

                                            EM.stop
                                          }) do |client|
    raise "Should not really be executed"
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha13 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha12 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha11 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha10 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha9 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha8 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha7 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha6 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha5 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha4 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha3 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha2 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.7.0.alpha1 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb
amq-client-0.5.0 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials.rb