[openstack-dev] [neutron]Success to create securitygroup with invalid tenant_id. Does it need to check the tenant_id?

2014-04-01 Thread
Hi, all Such as the subject, there is no mechanism to check the tenant_id, Do you think it is necessary? Thanks! Lee Li ___ OpenStack-dev mailing list OpenStack-dev@lists.openstack.org

Re: [openstack-dev] [heatclient] Jenkins Fail (gate-python-heatclient-pypy FAILURE)

2014-03-18 Thread
import setup Should we modify the setup.py too? 2014-03-18 15:32 GMT+08:00 黎林果 lilinguo8...@gmail.com: Hi, Anybody know the Jenkins Fail? I've encountered this fail in tow patches. gate-python-heatclient-pypyhttp://logs.openstack.org/58/73558/7/check/gate-python-heatclient

[openstack-dev] [neutron]The duplicate name of security group

2014-03-07 Thread
Hi stackers, The duplicate name of sg may cause some problems, do you think so? https://bugs.launchpad.net/neutron/+bug/1289195 Thanks! Lee Li ___ OpenStack-dev mailing list OpenStack-dev@lists.openstack.org

[openstack-dev] time.sleep is affected by eventlet.monkey_patch()

2014-03-06 Thread
Hi stackers, I have do a test like: test1.py import time def sleep_test(): print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())) time.sleep(30) print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())) sleep_test() test2.py import time import eventlet

Re: [openstack-dev] [neutron]The mechanism of physical_network segmentation_id is logical?

2014-02-25 Thread
I would not expect a similar feature to be implemented for the openvswitch monolithic plugin, since that is being deprecated. What's the relation of ML2 and other plugins? I found the create_subnet only implemented in ML2 bug not in openvswith. 2014-02-25 11:54 GMT+08:00 黎林果 lilinguo8

Re: [openstack-dev] [neutron]Can somebody describe the all the rolls about networks' admin_state_up

2014-02-24 Thread
Thanks you very much. IMHO when admin_state_up is false that entity should be down, meaning network should be down. otherwise what it the usage of admin_state_up ? same is true for port admin_state_up It likes switch's power button? 2014-02-24 16:03 GMT+08:00 Assaf Muller amul...@redhat.com:

[openstack-dev] [neutron]The mechanism of physical_network segmentation_id is logical?

2014-02-24 Thread
Hi stackers, When create a network, if we don't set provider:network_type, provider:physical_network or provider:segmentation_id, the network_type will be from cfg, but the other tow is from db's first record. Code is (physical_network, segmentation_id) =

Re: [openstack-dev] [neutron]The mechanism of physical_network segmentation_id is logical?

2014-02-24 Thread
failed, then throw exception. what's your opinion? Thanks! 2014-02-24 21:50 GMT+08:00 Robert Kukura rkuk...@redhat.com: On 02/24/2014 07:09 AM, 黎林果 wrote: Hi stackers, When create a network, if we don't set provider:network_type, provider:physical_network or provider:segmentation_id

Re: [openstack-dev] [neutron]The mechanism of physical_network segmentation_id is logical?

2014-02-24 Thread
Yes. You are right. The bp has implemented this function. Thank you very much. 2014-02-25 11:01 GMT+08:00 Robert Kukura rkuk...@redhat.com: On 02/24/2014 09:11 PM, 黎林果 wrote: Bob, Thank you very much. I have understood. Another question: When create network with provider, if the network

[openstack-dev] [neutron]Can somebody describe the all the rolls about networks' admin_state_up

2014-02-23 Thread
Hi, I want to know the admin_state_up attribute about networks but I have not found any describes. Can you help me to understand it? Thank you very much. Regard, Lee Li ___ OpenStack-dev mailing list OpenStack-dev@lists.openstack.org

Re: [openstack-dev] help the oslo team help you

2014-02-18 Thread
+1 But if we don't sync the oslo, sometimes we have to modify the files in openstack/common/ in order to run Jekins. 2014-02-19 10:03 GMT+08:00 Joe Gordon joe.gord...@gmail.com: On Wed, Feb 12, 2014 at 12:16 PM, Doug Hellmann doug.hellm...@dreamhost.com wrote: If you have a change in your

Re: [openstack-dev] [Neutron] Neutron py27 test 'FAIL: process-returncode'

2014-02-13 Thread
I've encountered this FAIL in novalient. Binary content: traceback (test/plain; charset=utf8) Ran 708 tests in 12.268s FAILED (id=0, failures=1) error: testr failed (1) ERROR: InvocationError: '/home/jenkins/workspace/gate-python-novaclient-python26/.tox/py26/bin/python setup.p Who can help me

Re: [openstack-dev] [nova] Discuss the option delete_on_termination

2014-01-26 Thread
Hi, I have started the implementation, Please review. Address: https://review.openstack.org/#/c/67067/ Thanks. Regards, Lee 2014/1/9 Christopher Yeoh cbky...@gmail.com: On Thu, Jan 9, 2014 at 5:00 PM, 黎林果 lilinguo8...@gmail.com wrote: Oh, I see. Thank you very much. It's just hard coded

[openstack-dev] code review

2014-01-19 Thread
Hi all, I'd like you to examine a change. Please visit [neutron] https://review.openstack.org/#/c/63981/ ‘ipt_mgr.ipv6 written in the wrong ipt_mgr.ipv4’ [nova] https://review.openstack.org/#/c/64241/ 'Add API schema for v3 multinic API' [python-keystoneclient]

Re: [openstack-dev] Discuss the option delete_on_termination

2014-01-09 Thread
Oh, I see. Thank you very much. It's just hard coded for attaching volume and swapping volume. How to deal the bp: https://blueprints.launchpad.net/nova/+spec/add-delete-on-termination-option ? 2014/1/9 Christopher Yeoh cbky...@gmail.com: On Thu, Jan 9, 2014 at 2:35 PM, 黎林果 lilinguo8

[openstack-dev] [nova] Discuss the option delete_on_termination

2014-01-08 Thread
Hi All, Attach a volume when creating a server, the API contains 'block_device_mapping', such as: block_device_mapping: [ { volume_id: VOLUME_ID, device_name: /dev/vdc, delete_on_termination: true } ] It allows the option

[openstack-dev] Discuss the option delete_on_termination

2014-01-08 Thread
Hi All, Attach a volume when creating a server, the API contains 'block_device_mapping', such as: block_device_mapping: [ { volume_id: VOLUME_ID, device_name: /dev/vdc, delete_on_termination: true } ] It allows the option

Re: [openstack-dev] Discuss the option delete_on_termination

2014-01-08 Thread
to true when creating a new instance and set to false for an exist instance. Regards, Lee 2014/1/9 Christopher Yeoh cbky...@gmail.com: On Thu, Jan 9, 2014 at 9:25 AM, 黎林果 lilinguo8...@gmail.com wrote: Hi All, Attach a volume when creating a server, the API contains 'block_device_mapping

[openstack-dev] [nova] Discuss the option delete_on_termination

2014-01-02 Thread
Hi, All Attach a volume when creating a server, the API contains 'block_device_mapping', such as: block_device_mapping: [ { volume_id: VOLUME_ID, device_name: /dev/vdc, delete_on_termination: true } ] It allows the

[openstack-dev] [nova]Should we add the api to move the removed or damaged hosts

2014-01-02 Thread
Hi, All Should we add the api to move the removed or damaged hosts? See also: https://blueprints.launchpad.net/nova/+spec/add-delete-host-api Best regards! Lee ___ OpenStack-dev mailing list OpenStack-dev@lists.openstack.org

Re: [openstack-dev] [Neutron][Testr] Brand new checkout of Neutron... getting insane unit test run results

2014-01-01 Thread
I have met this problem too.The units can't be run. The end info as: Ran 0 tests in 0.673s OK cp: cannot stat `.testrepository/-1': No such file or directory 2013/12/28 Jay Pipes jaypi...@gmail.com: On 12/27/2013 11:11 PM, Robert Collins wrote: I'm really sorry about the horrid UI - we're in