Skip to content

Instantly share code, notes, and snippets.

@voglster
Created August 19, 2019 19:12
Show Gist options
  • Save voglster/b77d5ed24e0cbf678167c1907571c26f to your computer and use it in GitHub Desktop.
Save voglster/b77d5ed24e0cbf678167c1907571c26f to your computer and use it in GitHub Desktop.
def log(msg):
while True:
rh.reload()
version = rh.version
rh.log.append(str(msg)))
rh.version = version + 1
try:
rh.save(save_condition={'version': version})
break
except OperationError:
pass
logging.info(msg)
def update_status(new_status):
while True:
rh.reload()
version = rh.version
rh.status = new_status
rh.version = version + 1
try:
rh.save(save_condition={'version': version})
break
except OperationError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment