128
Checking flags without access to the database
129
=============================================
131
Feature flags can also be checked without access to the database by making use
132
of the 'getFeatureFlag' XML-RPC method.
134
server_proxy = xmlrpclib.ServerProxy(
135
config.launchpad.feature_flags_endpoint, allow_none=True)
136
if server_proxy.getFeatureFlag(
137
'codehosting.use_forking_server', ['user:' + user_name]):
128
140
Debugging feature usage
129
141
=======================