Skip to content

Commit

Permalink
Merge pull request #54 from killbill/ci-flaky
Browse files Browse the repository at this point in the history
plugins: fix flaky tests
  • Loading branch information
pierre committed May 6, 2022
2 parents 7b8ed4b + 6812e4b commit c35bf57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion killbill-integration-tests/plugins/plugin_base.rb
Expand Up @@ -80,7 +80,7 @@ def prepare_setup_sequence(plugin_key, plugin_version)

def get_plugin_information(plugin_key, plugin_version)
nodes_info = KillBillClient::Model::NodesInfo.nodes_info(@options)
return [] if nodes_info.nil?
return [] if nodes_info.nil? || nodes_info.first.nil? # Not sure why it's sometimes empty

latest_version = Gem::Version.new('0.0.0')
has_running_plugin = false
Expand Down

0 comments on commit c35bf57

Please sign in to comment.