Skip to content

Commit

Permalink
Исправление ошибки установки PATH
Browse files Browse the repository at this point in the history
path не должен по-умолчанию приравниваться к ID кеша, т.к. это может
приводить к неуправляемому росту таблицы b_cache_tag ;

Если path не задан, он будет по-умолчанию равен '/';
  • Loading branch information
webarchitect609 committed Mar 27, 2018
1 parent 890e742 commit 843078f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/BitrixCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected function setDefaultParams()
}

if (trim($this->getPath()) == '') {
$this->withPath('/' . $this->getId());
$this->withPath('/');
}
}

Expand Down

0 comments on commit 843078f

Please sign in to comment.