Review: Approve
Diff comments: > diff --git a/lib/lp/services/config/__init__.py > b/lib/lp/services/config/__init__.py > index 9d43346..82c2e9f 100644 > --- a/lib/lp/services/config/__init__.py > +++ b/lib/lp/services/config/__init__.py > @@ -147,6 +147,13 @@ class LaunchpadConfig: > """Return the directory containing this instance configuration.""" > return find_config_dir(self._instance_name) > > + @property > + def use_gunicorn(self): > + """When running launchpad server, shall we use gunicorn?""" > + # XXX pappacena: 2020-01-20: Forced False until we have everything You probably meant 2021 here :-) > + # in place. > + return False > + > def setInstance(self, instance_name): > """Set the instance name where the conf files are stored. > -- https://code.launchpad.net/~pappacena/launchpad/+git/launchpad/+merge/396615 Your team Launchpad code reviewers is subscribed to branch ~pappacena/launchpad:initial-gunicorn-setup. _______________________________________________ Mailing list: https://launchpad.net/~launchpad-reviewers Post to : [email protected] Unsubscribe : https://launchpad.net/~launchpad-reviewers More help : https://help.launchpad.net/ListHelp

