reset domain hit quota on feed update start
This commit is contained in:
parent
cd4b7f1988
commit
8c3efd51ec
|
@ -259,6 +259,8 @@ class RSSUtils {
|
||||||
*/
|
*/
|
||||||
static function update_rss_feed($feed, $no_cache = false) {
|
static function update_rss_feed($feed, $no_cache = false) {
|
||||||
|
|
||||||
|
reset_fetch_domain_quota();
|
||||||
|
|
||||||
Debug::log("start", Debug::$LOG_VERBOSE);
|
Debug::log("start", Debug::$LOG_VERBOSE);
|
||||||
|
|
||||||
$pdo = Db::pdo();
|
$pdo = Db::pdo();
|
||||||
|
|
|
@ -164,6 +164,12 @@
|
||||||
Debug::log($msg);
|
Debug::log($msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function reset_fetch_domain_quota() {
|
||||||
|
global $fetch_domain_hits;
|
||||||
|
|
||||||
|
$fetch_domain_hits = [];
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: max_size currently only works for CURL transfers
|
// TODO: max_size currently only works for CURL transfers
|
||||||
// TODO: multiple-argument way is deprecated, first parameter is a hash now
|
// TODO: multiple-argument way is deprecated, first parameter is a hash now
|
||||||
function fetch_file_contents($options /* previously: 0: $url , 1: $type = false, 2: $login = false, 3: $pass = false,
|
function fetch_file_contents($options /* previously: 0: $url , 1: $type = false, 2: $login = false, 3: $pass = false,
|
||||||
|
|
Loading…
Reference in New Issue