From: S.Çağlar Onur Date: Wed, 22 Dec 2010 01:56:13 +0000 (-0500) Subject: use gethostbyname for determining PLC_API_IP argument like plc.d/postgresql X-Git-Tag: plcapi-5.0-25~6 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c4bc9aed97c7434c8c114352a490c3e8c918d38d;p=plcapi.git use gethostbyname for determining PLC_API_IP argument like plc.d/postgresql --- diff --git a/aspects/ratelimitaspects.py b/aspects/ratelimitaspects.py index 5aeaa86d..836b2bab 100644 --- a/aspects/ratelimitaspects.py +++ b/aspects/ratelimitaspects.py @@ -18,6 +18,7 @@ import memcache import os import sys +import socket class BaseRateLimit(object): @@ -105,7 +106,7 @@ Subject: %(subject)s api_method_caller = "unknown" # excludes - if api_method_source == None or api_method_source[0] == self.config.PLC_API_IP or api_method_source[0] in self.whitelist: + if api_method_source == None or api_method_source[0] == socket.gethostbyname(self.config.PLC_API_HOST) or api_method_source[0] in self.whitelist: return # sanity check