helpers.cpp 388 B

123456789101112131415161718
  1. #include "helpers.h"
  2. #include <util/string/cast.h>
  3. #include <util/system/env.h>
  4. namespace NYT {
  5. ////////////////////////////////////////////////////////////////////////////////
  6. int GetJobFirstOutputTableFD()
  7. {
  8. return FromString<int>(GetEnv("YT_FIRST_OUTPUT_TABLE_FD", "1"));
  9. }
  10. ////////////////////////////////////////////////////////////////////////////////
  11. } // namespace NYT