mongo/buildscripts/hang_analyzer.py
Zack Winter fbc2f1ea04 SERVER-111295 [v8.0] Set python as formatter in format_multirun (#41681)
GitOrigin-RevId: 0a5f595c13f329cc64a37f58e7369dd9469ee848
2026-01-15 19:55:28 +00:00

10 lines
404 B
Python
Executable File

#!/usr/bin/env python3
"""Stub file pointing users to the new invocation."""
if __name__ == "__main__":
print(
"Hello! It seems you've executed 'buildscripts/hang_analyzer.py'. We have recently\n"
"repackaged the hang analyzer as a subcommand of resmoke. It can now be invoked as\n"
"'./buildscripts/resmoke.py hang-analyzer' with all of the same arguments as before."
)