blob: 2c692475d1c3cbe26176b8a83817ceb8578e532d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
#include "fwd.h"
#include "http.h"
#include <util/generic/maybe.h>
#include <util/str_stl.h>
namespace NYT {
///////////////////////////////////////////////////////////////////////////////
bool ParseBoolFromResponse(const TString& response);
TGUID ParseGuidFromResponse(const TString& response);
////////////////////////////////////////////////////////////////////////////////
TString GetProxyForHeavyRequest(const TClientContext& context);
void LogRequestError(
const TString& requestId,
const THttpHeader& header,
const TString& message,
const TString& attemptDescription);
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|