Skip to content

Commit

Permalink
Making Project the default environment.
Browse files Browse the repository at this point in the history
The initial checkin required that the F5LBaaSV2Driver be subclassed
with a class that would explicitly set the environment.  This makes
'Project' the default environment.
  • Loading branch information
richbrowne committed Apr 15, 2016
1 parent f65489e commit f92a8b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neutron_lbaas/drivers/f5/driver_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class UndefinedEnvironment(Exception):

class F5LBaaSV2Driver(driver_base.LoadBalancerBaseDriver):

def __init__(self, plugin, env=None):
def __init__(self, plugin, env='Project'):
super(F5LBaaSV2Driver, self).__init__(plugin)

self.load_balancer = LoadBalancerManager(self)
Expand Down

0 comments on commit f92a8b1

Please sign in to comment.