Comment 28 for bug 1318721

Revision history for this message
Corey Bryant (corey.bryant) wrote :

Hui, I think you're seeing that error because you don't have the proposed universe pocket enabled.

Brian, I'm fairly certain this is a race in the test, where we restart the neutron-server and immediately test if it's running. [1] Can we try rerunning the test for now and I'll fixup the tests in the package for the next time we upload a fix?

[1] snippet of code from test, could use a sleep after line 11

  11 service neutron-server restart > /dev/null 2>&1
  12 if pidof -x neutron-server > /dev/null; then
  13 apt-get -y remove --purge neutron-plugin-brocade
  14 echo "OK"
  15 else
  16 echo "ERROR: BROCADE PLUGIN IS NOT RUNNING"
  17 apt-get -y remove --purge neutron-plugin-brocade
  18 exit 1
  19 fi