athena: fix random test failure (#24278)

This commit is contained in:
Adeeb Shihadeh
2022-04-20 13:20:50 -07:00
committed by GitHub
parent e515831e5f
commit 0fbb7a4673

View File

@@ -255,12 +255,12 @@ def getMessage(service=None, timeout=1000):
@dispatcher.add_method
def getVersion():
def getVersion() -> Dict[str, str]:
return {
"version": get_version(),
"remote": get_origin(),
"branch": get_short_branch(),
"commit": get_commit(),
"remote": get_origin(''),
"branch": get_short_branch(''),
"commit": get_commit(default=''),
}