Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.

Commit 3e55f6f

Browse files
#74: Fixed generating bucket udf path method (#75)
* Fixed udf path generate method * Updated changelog for release
1 parent 3888941 commit 3e55f6f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

doc/changes/changes_0.3.0.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# BucketFs Utils Python 0.3.0, released XXXX-XX-XX
2-
1+
# BucketFs Utils Python 0.3.0, released 2022-07-20
2+
Code name: Added method to BucketFSLocation to generate bucket udf path and upgraded Python version to >=3.8.
33

44
## Summary
5-
5+
This release adds generate_bucket_udf_path method in BucketFSLoction.
6+
In addition, bugs in the listing and uploading methods are fixed. Furthermore,
7+
Python version is upgraded to >=3.8
68

79
## Features / Enhancements
810

@@ -12,15 +14,13 @@
1214

1315
- #63: Corrected uploading fileobject method of the mock bucketfs
1416
- #66: Corrected listing method of localfs mock bucketfs
17+
- #74: Fixed generating bucket udf path method
1518

1619
## Refactoring
1720

1821
- #53: Upgraded Python version to >=3.8, removed numpy from source again
1922
- #38: Replaced old bash scripts for building documentation with Sphinx_Github-Pages-generator, migrated to Nox
2023

21-
## Security
22-
23-
- /
2424

2525
## Documentation
2626

exasol_bucketfs_utils_python/bucketfs_location.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def generate_bucket_udf_path(
2929
self, path_in_bucket: Union[None, str, PurePosixPath]) \
3030
-> PurePosixPath:
3131
return bucketfs_utils.generate_bucket_udf_path(
32-
self.bucket_config, path_in_bucket)
32+
self.bucket_config,
33+
self.get_complete_file_path_in_bucket(path_in_bucket))
3334

3435
def get_complete_file_path_in_bucket(
3536
self,

0 commit comments

Comments
 (0)