javelin: fix destroy_servers
In destroy_servers, fix "res" to get servers details by the ID before
starting to iterate server networks.
This is the same way used in check_servers.
Closes-bug: #1432091
Change-Id: I0ec617da9352e534a6031b27ea80632acc2609ba
diff --git a/tempest/cmd/javelin.py b/tempest/cmd/javelin.py
index 9c3a8f8..8f238a5 100755
--- a/tempest/cmd/javelin.py
+++ b/tempest/cmd/javelin.py
@@ -874,6 +874,7 @@
if not res:
LOG.info("Server '%s' does not exist" % server['name'])
continue
+ res = client.servers.get_server(res['id'])
# we iterate all interfaces until we find a floating IP
# and stop looping after dropping it.