instaclick / PDI-Plugin-Step-AMQP

AMQP Plugin for PDI
MIT License
10 stars 14 forks source link

split URI parameter into username, password, host port, vhost, usessl... #8

Closed dshvedchenko closed 9 years ago

dshvedchenko commented 9 years ago

..., disable URI in dialog

  1. break consumer loop if transformation stopped
FabioBatSilva commented 9 years ago

@dshvedchenko Can you please change it to allow both approaches ? (uri / user-pass)

if (uri != null) {
    factory.setUri(uri);
} else {
    factory.setHost(host);
    factory.setPort(port);
   // ....
}

Also the version should be 2.1.0, Usually the second digit is for new features and the last one is for bug fixes..

dshvedchenko commented 9 years ago

ok