Fix linux build
parent
0a8d9fa5b5
commit
bbfb25077b
|
|
@ -58,12 +58,19 @@
|
|||
// - Any request that gets a 503 still goes through the retry logic
|
||||
//
|
||||
|
||||
//
|
||||
// Forward decls
|
||||
//
|
||||
const F32 LLMediaDataClient::QUEUE_TIMER_DELAY = 1.0; // seconds(s)
|
||||
const F32 LLMediaDataClient::UNAVAILABLE_RETRY_TIMER_DELAY = 5.0; // secs
|
||||
const U32 LLMediaDataClient::MAX_RETRIES = 4;
|
||||
const U32 LLMediaDataClient::MAX_SORTED_QUEUE_SIZE = 10000;
|
||||
const U32 LLMediaDataClient::MAX_ROUND_ROBIN_QUEUE_SIZE = 10000;
|
||||
|
||||
// << operators
|
||||
std::ostream& operator<<(std::ostream &s, const LLMediaDataClient::request_queue_t &q);
|
||||
std::ostream& operator<<(std::ostream &s, const LLMediaDataClient::Request &q);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// LLMediaDataClient
|
||||
|
|
|
|||
Loading…
Reference in New Issue