Skip to content

Commit

Permalink
Merge "Fix analytics systemless test failure due to incompatible geve…
Browse files Browse the repository at this point in the history
…nt library" into R3.2
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Nov 1, 2016
2 parents 017e956 + 72e970c commit 79fccc8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import time, socket, os
from bv_uve import BroadViewOL
import gevent
from gevent.coros import Semaphore
from gevent.lock import Semaphore
from opserver.consistent_schdlr import ConsistentScheduler
from bottle import Bottle, request, run
import json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (c) 2015 Juniper Networks, Inc. All rights reserved.
#
from gevent.queue import Queue as GQueue
from gevent.coros import Semaphore
from gevent.lock import Semaphore
import os, json, sys, subprocess, time, gevent, socket
from tempfile import NamedTemporaryFile, mkdtemp
import cPickle as pickle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import time, socket, os
from topology_uve import LinkUve
import gevent
from gevent.coros import Semaphore
from gevent.lock import Semaphore
from opserver.consistent_schdlr import ConsistentScheduler
import traceback

Expand Down
2 changes: 1 addition & 1 deletion src/config/common/zkclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from bitarray import bitarray
from cfgm_common.exceptions import ResourceExhaustionError, ResourceExistsError
from gevent.coros import BoundedSemaphore
from gevent.lock import BoundedSemaphore

import uuid

Expand Down
2 changes: 1 addition & 1 deletion src/discovery/disc_cassdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import disc_consts
import disc_exceptions
from datetime import datetime
from gevent.coros import BoundedSemaphore
from gevent.lock import BoundedSemaphore

import pycassa
import pycassa.util
Expand Down
2 changes: 1 addition & 1 deletion src/discovery/disc_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
from sandesh_common.vns.constants import ModuleNames, Module2NodeType, NodeTypeNames,\
INSTANCE_ID_DEFAULT

from gevent.coros import BoundedSemaphore
from gevent.lock import BoundedSemaphore
from cfgm_common.rest import LinkObject

import disc_auth_keystone
Expand Down
2 changes: 1 addition & 1 deletion src/discovery/disc_server_zk.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
INSTANCE_ID_DEFAULT
from sandesh.discovery_introspect import ttypes as sandesh

from gevent.coros import BoundedSemaphore
from gevent.lock import BoundedSemaphore
from cfgm_common.rest import LinkObject


Expand Down
2 changes: 1 addition & 1 deletion src/discovery/disc_zk.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import time
import disc_consts

from gevent.coros import BoundedSemaphore
from gevent.lock import BoundedSemaphore


class DiscoveryZkClient(object):
Expand Down
2 changes: 1 addition & 1 deletion src/opserver/partition_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
monkey.patch_all()
import logging
import gevent
from gevent.coros import BoundedSemaphore
from gevent.lock import BoundedSemaphore
from kafka import KafkaClient, KeyedProducer, SimpleConsumer, common
from uveserver import UVEServer
import os
Expand Down
2 changes: 1 addition & 1 deletion src/opserver/uveserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import sys
from opserver_util import OpServerUtils
import re
from gevent.coros import BoundedSemaphore
from gevent.lock import BoundedSemaphore
from pysandesh.util import UTCTimestampUsec
from pysandesh.connection_info import ConnectionState
from sandesh.viz.constants import UVE_MAP
Expand Down

0 comments on commit 79fccc8

Please sign in to comment.