Commit fab0668a authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

Release 0.31.1 (fixed watchdog call)

parent b54fd17d
Changes Changes
======= =======
0.31.1 (2012-10-02)
-------------------
* Fixed Watchdog call in slapgrid [Cédric Le Ninivin]
0.31 (2012-10-02) 0.31 (2012-10-02)
------------------- -------------------
......
from setuptools import setup, find_packages from setuptools import setup, find_packages
import glob import glob
import os import os
version = '0.31' version = '0.31.1'
name = 'slapos.core' name = 'slapos.core'
long_description = open("README.txt").read() + "\n" + \ long_description = open("README.txt").read() + "\n" + \
open("CHANGES.txt").read() + "\n" open("CHANGES.txt").read() + "\n"
......
...@@ -452,7 +452,7 @@ class Slapgrid(object): ...@@ -452,7 +452,7 @@ class Slapgrid(object):
self.maximum_periodicity = maximum_periodicity self.maximum_periodicity = maximum_periodicity
self.force_periodicity = force_periodicity self.force_periodicity = force_periodicity
# XXX hardcoded watchdog_path # XXX hardcoded watchdog_path
self.watchdog_path = '/opt/slapos/bin/watchdog' self.watchdog_path = '/opt/slapos/bin/slapos-watchdog'
def getWatchdogLine(self): def getWatchdogLine(self):
invocation_list = [self.watchdog_path] invocation_list = [self.watchdog_path]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment