Skip to content

Commit 6b4102b

Browse files
SBonesmeta-codesync[bot]
authored andcommitted
Migrate get_server_build_info callers to modern thrift-python
Summary: Migrate callers in config.py and debug.py from get_server_build_info_legacy to the modern get_server_build_info implementation. Reviewed By: muirdm Differential Revision: D90630662 fbshipit-source-id: b50c8e7c64e522308235cb73660f001731b97e09
1 parent 90d49e1 commit 6b4102b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eden/fs/cli/debug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ def run(self, args: argparse.Namespace) -> int:
763763
def do_buildinfo(instance: EdenInstance, out: Optional[IO[bytes]] = None) -> None:
764764
if out is None:
765765
out = sys.stdout.buffer
766-
build_info = instance.get_server_build_info_legacy()
766+
build_info = instance.get_server_build_info()
767767
sorted_build_info = collections.OrderedDict(sorted(build_info.items()))
768768
for key, value in sorted_build_info.items():
769769
out.write(b"%s: %s\n" % (key.encode(), value.encode()))

0 commit comments

Comments
 (0)