Skip to content

Commit 0d8612e

Browse files
committed
change default graphite port, update to 0.3
1 parent 80fe474 commit 0d8612e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

howto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#Deploy on PypiLive
22
python setup.py sdist upload -r pypi
3-
3+
python setup.py register -r pypi

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ def read(fname):
88
def run_setup():
99
setup(
1010
name='sql-feed-graphite',
11-
version='0.2',
11+
version='0.3',
1212
description='https://github.com/orachide/sql-feed-graphite',
1313
keywords = 'SQL Graphite Metrics',
1414
url='https://github.com/orachide/sql-feed-graphite',
15-
download_url = 'https://github.com/orachide/sql-feed-graphite/archive/0.2.tar.gz',
15+
download_url = 'https://github.com/orachide/sql-feed-graphite/archive/0.3.tar.gz',
1616
author='Rachide Ouattara',
1717
author_email='[email protected]',
1818
license='BSD',

sql_feed_graphite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def main():
3838
graphiteHost = 'localhost'
3939
graphitePort = os.environ.get('SQL_FEED_GRAPHITE_PORT')
4040
if graphitePort is None:
41-
graphitePort = 5432
41+
graphitePort = 2003
4242
graphitePrefix = os.environ.get('SQL_FEED_GRAPHITE_PREFIX')
4343
if graphitePrefix is None:
4444
print 'You must set your graphitePrefix in the environment variable `SQL_FEED_GRAPHITE_PREFIX`'

0 commit comments

Comments
 (0)