Merge "Fixes volume attach issue on Hyper-V"

This commit is contained in:
Jenkins
2012年11月06日 16:02:00 +00:00
committed by Gerrit Code Review

View File

@@ -20,7 +20,14 @@
"""Starter script for Nova Compute."""
import eventlet
eventlet.monkey_patch()
import os
if os.name == 'nt':
# eventlet monkey patching causes subprocess.Popen to fail on Windows
# when using pipes due to missing non blocking I/O support
eventlet.monkey_patch(os=False)
else:
eventlet.monkey_patch()
import os
import sys
Reference in New Issue
openstack/nova
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.

The note is not visible to the blocked user.