Skip to content

Commit 5c68d17

Browse files
author
Dario Berzano
committedApr 16, 2015
Elastiq: packaging adapted to new daemon structure
1 parent d705297 commit 5c68d17

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
 

‎bin/elastiqctl

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys, os.path
1010
from getopt import getopt, GetoptError
1111
#from piheat import PiHeat
12-
from elastiq.daemontest import Elastiq
12+
from elastiq import Elastiq
1313

1414
daemondir = None
1515
pidfile = None

‎misc/create-packs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ if [ "$iteration" == '' ] ; then
9191
iteration=$(( iteration + 1 ))
9292
fi
9393
echo $iteration > misc/dist/latest_iteration
94-
version="$( cd pylib ; python -c 'import elastiq ; print elastiq.__version__' )"
94+
version="$( cd pylib ; python -c 'import elastiq ; print elastiq.Elastiq.__version__' )"
9595
pe "Python: $python_version (override with --python-version <v>)"
9696
pe "version: $version, iteration: $iteration (override with --iteration <n>)"
9797

‎pylib/elastiq/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
class Elastiq(Daemon):
88

9+
__version__ = '0.9.10'
10+
911
## Constructor.
1012
#
1113
# @param name Daemon name

0 commit comments

Comments
 (0)