Comment 0 for bug 891756

Revision history for this message
Chris Behrens (cbehrens) wrote :

_live_migration_common_check tries to catch exception.NotFileFound when trying to do rpc.call()s... but rpc.call() will only ever raise a RemoteError. If you "except RemoteError, err", you can check err.exc_type for the original exception class name... but I don't see where exception.FileNotFound ever gets raised on the worker side (compute manager).

I'm refactoring scheduler tests and found this. Since I don't know what the intended behavior is for the above, I can't fix it myself. I'll leave comments in my refactoring referencing this bug id.