splitlog 4.1.0__tar.gz → 4.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {splitlog-4.1.0 → splitlog-4.1.2}/PKG-INFO +2 -2
- {splitlog-4.1.0 → splitlog-4.1.2}/README.md +1 -1
- {splitlog-4.1.0 → splitlog-4.1.2}/pyproject.toml +1 -1
- {splitlog-4.1.0 → splitlog-4.1.2}/splitlog/outputfolder.py +1 -1
- {splitlog-4.1.0 → splitlog-4.1.2}/LICENSE +0 -0
- {splitlog-4.1.0 → splitlog-4.1.2}/splitlog/__init__.py +0 -0
- {splitlog-4.1.0 → splitlog-4.1.2}/splitlog/__main__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: splitlog
|
|
3
|
-
Version: 4.1.
|
|
3
|
+
Version: 4.1.2
|
|
4
4
|
Summary: Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -62,7 +62,7 @@ out
|
|
|
62
62
|
|
|
63
63
|
Installation
|
|
64
64
|
------------
|
|
65
|
-
Python 3.
|
|
65
|
+
Python 3.11+ must be available. Installation via [pipx](https://pypi.org/project/pipx/):
|
|
66
66
|
|
|
67
67
|
```shell script
|
|
68
68
|
pipx install splitlog
|
|
@@ -39,7 +39,7 @@ out
|
|
|
39
39
|
|
|
40
40
|
Installation
|
|
41
41
|
------------
|
|
42
|
-
Python 3.
|
|
42
|
+
Python 3.11+ must be available. Installation via [pipx](https://pypi.org/project/pipx/):
|
|
43
43
|
|
|
44
44
|
```shell script
|
|
45
45
|
pipx install splitlog
|
|
@@ -214,7 +214,7 @@ class LinuxLocalFilesystemOutputFolder(OutputFolder):
|
|
|
214
214
|
|
|
215
215
|
def create(self, path: Path) -> BinWriter:
|
|
216
216
|
real_path = self._ensure_path_under_root(path)
|
|
217
|
-
return FileWrapper(open(
|
|
217
|
+
return FileWrapper(open(real_path, "xb", opener=self._opener))
|
|
218
218
|
|
|
219
219
|
def _ensure_path_under_root(self, path: Path) -> Path:
|
|
220
220
|
assert not path.is_absolute(), f"Path {path} must be relative"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|