Skip to content

Commit

Permalink
user propagation fix for system crontab
Browse files Browse the repository at this point in the history
  • Loading branch information
witlox committed Jun 19, 2019
1 parent 308db0a commit feff26f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dcron/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def main():
else:
processor = Processor(args.udp_communication_port, storage, cron=CronTab(tabfile=args.cron, user=False), user='root')
else:
processor = Processor(args.udp_communication_port, storage)
processor = Processor(args.udp_communication_port, storage, user='root')

with StatusProtocolServer(processor, args.udp_communication_port) as loop:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

from setuptools import setup

version = "0.9.9"
version = "0.9.10"

requirements = ['aiohttp',
'aiofiles',
Expand Down

0 comments on commit feff26f

Please sign in to comment.