~ubuntu-branches/ubuntu/quantal/quantum/quantal-proposed

« back to all changes in this revision

Viewing changes to quantum/agent/linux/utils.py

  • Committer: Package Import Robot
  • Author(s): Adam Gandelman
  • Date: 2013-04-25 17:52:50 UTC
  • mfrom: (2.1.18)
  • Revision ID: package-import@ubuntu.com-20130425175250-411niboa5hpszqzl
Tags: 2012.2.4-0ubuntu1
* Resynchronize with stable/folsom (96680c96) (LP: #1179707):
  - [527b5ec] Folsom NEC plugin fails to create a network/port on some version
    of PFC due to too long string LP: 1166077
  - [346aae3] Folsom NEC plugin: Cannot create a tenant on some version of
    OpenFlow controller LP: 1166076
  - [a31069a] Network cannot be created in NEC plugin when OFC network ID is
    unique inside a tenant LP: 1127664
  - [a109f7e] Folsom l3 agent unable to connect to quantum service LP: 1157090
  - [913586b] MyISAM does not perform cascading deletions LP: 1153594
  - [5a2ef81] Openstack quantum, race condition in ip address creation when
    starting 50 VMs on a 5-node cluster LP: 1110807
  - [f94b149] Deleting a subnet that is added to a router leaves behind a port
    that cannot be deleted LP: 1104337
  - [b14824f] Address re-allocation before DHCP lease's expire LP: 1116500
  - [30bb632] file descriptors not closed when executing sub-processes
    LP: 1130735
  - [5d26f41] DHCP agent could take upto a minute to get its IP address
    LP: 1128180
  - [2f32795] dhcp-agent distributes empty domain when dhcp_domain=""
    LP: 1099625
  - [8755cb3] ovs and netns cleanupo utilities do not log LP: 1118517
  - [45baf03] l3_agent destroys all namespaces on init, even if router_id is
    set (LP: #1122206)

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        env.update(addl_env)
50
50
    obj = subprocess.Popen(cmd, shell=False, stdin=subprocess.PIPE,
51
51
                           stdout=subprocess.PIPE, stderr=subprocess.PIPE,
52
 
                           preexec_fn=_subprocess_setup,
 
52
                           preexec_fn=_subprocess_setup, close_fds=True,
53
53
                           env=env)
54
54
 
55
55
    _stdout, _stderr = (process_input and