diff options
| author | Paul C. Bütow <paul.buetow@1und1.de> | 2014-05-26 15:36:49 +0200 |
|---|---|---|
| committer | Paul C. Bütow <paul.buetow@1und1.de> | 2014-05-26 15:36:49 +0200 |
| commit | 259a0937c4dbc395497d7050f1d16d8b5127b877 (patch) | |
| tree | 76fc88809ea15e5654919642727c86a13442a306 /src | |
| parent | 2fd8de973452707d3e1d2d7ea5228e8914ca0d03 (diff) | |
| parent | a5a2f3c0194452d76796045289d47c25d180ecae (diff) | |
Merge pull request #1 from scabrera/master
Fixing pool creation
Diffstat (limited to 'src')
| -rwxr-xr-x | src/fapi | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -334,8 +334,8 @@ class Fapi(FapiBase): elif a.sub == 'create': poolmembers = [] method = 'LB_METHOD_ROUND_ROBIN' - if a.sub3: - for x in a.sub3.split(','): + if a.sub2: + for x in a.sub2.split(','): fqdn_or_ip, ip, port = self.lookup(x) pm = { 'address' : fqdn_or_ip, 'port' : port } poolmembers.append(pm) |
