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

Commit

Permalink
#74: Fixed generating bucket udf path method (#75)
Browse files Browse the repository at this point in the history
* Fixed udf path generate method

* Updated changelog for release
  • Loading branch information
umitbuyuksahin authored Jul 20, 2022
1 parent 3888941 commit 3e55f6f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions doc/changes/changes_0.3.0.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# BucketFs Utils Python 0.3.0, released XXXX-XX-XX

# BucketFs Utils Python 0.3.0, released 2022-07-20
Code name: Added method to BucketFSLocation to generate bucket udf path and upgraded Python version to >=3.8.

## Summary

This release adds generate_bucket_udf_path method in BucketFSLoction.
In addition, bugs in the listing and uploading methods are fixed. Furthermore,
Python version is upgraded to >=3.8

## Features / Enhancements

Expand All @@ -12,15 +14,13 @@

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

## Refactoring

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

## Security

- /

## Documentation

Expand Down
3 changes: 2 additions & 1 deletion exasol_bucketfs_utils_python/bucketfs_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def generate_bucket_udf_path(
self, path_in_bucket: Union[None, str, PurePosixPath]) \
-> PurePosixPath:
return bucketfs_utils.generate_bucket_udf_path(
self.bucket_config, path_in_bucket)
self.bucket_config,
self.get_complete_file_path_in_bucket(path_in_bucket))

def get_complete_file_path_in_bucket(
self,
Expand Down

0 comments on commit 3e55f6f

Please sign in to comment.