Comment 6 for bug 1297642

Revision history for this message
Sangeeta Singh (singhs) wrote :

The issue is during the rebuild/recreate on the target host it makes a call to nova network to setup the network for the instance on the host.

This is a rpc.call and when the nova network receives this call since it is running in the multi host mode it does another roc.call on the reply queue of the first call.

Once the target host receives the response on the reply que it just consumes it but does not forward the call to the network manager for processing which nova network keeps waiting for the response and finally time-out.

This seems like a bug since it should foist complete the initial call and then create a new rpc call for the taget host to setup the network.

I am using the FlatManager class.