Skip to content

Commit

Permalink
Use absolute path in DiskQueue (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
aniezurawski committed Jul 15, 2021
1 parent ccf7029 commit 5b45de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neptune/new/internal/containers/disk_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(
to_dict: Callable[[T], dict],
from_dict: Callable[[dict], T],
max_file_size: int = 64 * 1024**2):
self._dir_path = dir_path
self._dir_path = dir_path.resolve()
self._to_dict = to_dict
self._from_dict = from_dict
self._max_file_size = max_file_size
Expand Down

0 comments on commit 5b45de6

Please sign in to comment.