Skip to content

Commit

Permalink
Merge pull request #38 from neuro-ml/dev
Browse files Browse the repository at this point in the history
hotfix
  • Loading branch information
STNLd2 committed Feb 21, 2024
2 parents 21f67f8 + 32c4b5b commit 68f77a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bev/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.11.2"
__version__ = "0.11.3"
4 changes: 3 additions & 1 deletion bev/config/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,10 @@ def build(self) -> Optional[Location]:
ttl = timeparse(self.ttl)
if ttl is None:
raise ValueError(f'The time format could not be parsed: {self.ttl}')
else:
ttl = self.ttl
return RedisLocation(self.url, prefix=self.prefix, keep_labels=self.keep_labels,
keep_usage=self.keep_usage, ttl=self.ttl)
keep_usage=self.keep_usage, ttl=ttl)


@register('small')
Expand Down

0 comments on commit 68f77a5

Please sign in to comment.