summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-03-10 21:06:21 -0400
committerMonty Taylor <mordred@inaugust.com>2013-03-10 21:06:21 -0400
commitcb82d356e6e49e9e60b933de85cea583dc46cd72 (patch)
treed60a9a80f44de72d556adc28cf5feb2a480bdadb /openstack
parent622f79311787c8a0b02d4999ada66810a97246e0 (diff)
downloadoslo-cb82d356e6e49e9e60b933de85cea583dc46cd72.tar.gz
oslo-cb82d356e6e49e9e60b933de85cea583dc46cd72.tar.xz
oslo-cb82d356e6e49e9e60b933de85cea583dc46cd72.zip
Stop using --stat for ChangeLog.
It takes 15 seconds to generate the ChangeLog for nova. Without --stat, it takes 0.5 seconds. Removing this makes using tox in nova about the same speed as using install_venv/with_venv. Change-Id: I626d5e788bfaf1a80b91d845f21af54680f81c35
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/setup.py b/openstack/common/setup.py
index 80a0ece..d0a3e94 100644
--- a/openstack/common/setup.py
+++ b/openstack/common/setup.py
@@ -149,7 +149,7 @@ def write_git_changelog():
git_dir = _get_git_directory()
if not os.getenv('SKIP_WRITE_GIT_CHANGELOG'):
if git_dir:
- git_log_cmd = 'git --git-dir=%s log --stat' % git_dir
+ git_log_cmd = 'git --git-dir=%s log' % git_dir
changelog = _run_shell_command(git_log_cmd)
mailmap = _parse_git_mailmap(git_dir)
with open(new_changelog, "w") as changelog_file: