Skip to content

Commit 38f5ec2

Browse files
committed
Merge pull request #217 from dstufft/remove-download-stats
Remove warehouse.download_statistics, it is now linehaul
2 parents e46e221 + 8997280 commit 38f5ec2

File tree

13 files changed

+148
-1089
lines changed

13 files changed

+148
-1089
lines changed

dev/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ site:
55

66
database:
77
url: "postgresql://localhost/warehouse"
8-
download_statistics_url: "postgresql://localhost/warehouse"
98

109
redis:
1110
url: "redis://localhost:6379/0"

docs/configuration.rst

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,6 @@ database.url
8484
The URL for the primary database. This must be a PostgreSQL 9.3+ database
8585
and must be in the form of ``postgresql://hostname[:port]/databasename``.
8686

87-
database.download_statistics_url
88-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
89-
90-
:Type: URL
91-
:Default: ``None``
92-
:Required: Yes
93-
:Description:
94-
The URL for the download statistics database. This must be a PostgreSQL
95-
9.3+ database and must be in the form of
96-
``postgresql://hostname[:port]/databasename``.
97-
9887
redis.url
9988
~~~~~~~~~
10089

@@ -160,7 +149,6 @@ Example Configuration
160149
161150
database:
162151
url: "postgresql://localhost/warehouse"
163-
download_statistics_url: "postgresql://localhost/warehouse"
164152
165153
redis:
166154
url: "redis://localhost:6379/0"

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ def recursive_glob(path, pattern, cutdirs=0):
6565
},
6666

6767
install_requires=[
68-
"alchimia",
6968
"alembic",
7069
"arrow",
7170
"babel",

tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def _check_name(engine, name):
7979
override={
8080
"database": {
8181
"url": database_url,
82-
"download_statistics_url": database_url,
8382
},
8483
"search": {"hosts": []},
8584
},

0 commit comments

Comments
 (0)