Skip to content

Commit

Permalink
make keepalive actually minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomweber-sas committed Apr 8, 2024
1 parent 3e3ccd7 commit 29efbe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saspy/sasioiom.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def _endsas(self):

def _keepalive_thread(self):
while True:
sleep(self.sascfg.keep * 100)
sleep(self.sascfg.keep * 60)
if self.pid is None:
return
self.submit('', results='text')
Expand Down

0 comments on commit 29efbe1

Please sign in to comment.