blob: f396883ea5ad6349a0740524a033da397d179d3c (
plain) (
tree)
|
|
#include "helpers.h"
#include <util/string/cast.h>
#include <util/system/env.h>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
int GetJobFirstOutputTableFD()
{
return FromString<int>(GetEnv("YT_FIRST_OUTPUT_TABLE_FD", "1"));
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|