-
Notifications
You must be signed in to change notification settings - Fork 41
Fix issues with path resolving and listing files #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
When we read files by their number, we never get the right result. For example, we have the following file system structure: folder1/ - subfolder1/ --- file1 --- file2 - file3 - file4 folder2/ - subfolder2/ --- file5 --- file6 - file5 and maxAmountOfFiles = 3, then we will read [folder1, subfolder1, file3, file3, folder2, subfolder2, file5]. And this is not expected result. It is better to read by depth, which will give the expected result.
665de27 to
35837f2
Compare
|
|
||
| ```bash | ||
| composer require simpleenergy/php-webhdfs | ||
| composer require dreamfactory/php-webhdfs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good, but I think we should still keep the original package name. I'll be glad to merge your changes as a new version if you remove this.
| @@ -1,9 +1,15 @@ | |||
| { | |||
| "name": "simpleenergy/php-webhdfs", | |||
| "name": "dreamfactory/php-webhdfs", | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and of course this one too
| "name": "dreamfactory/php-webhdfs", | ||
| "description": "PHP WebHDFS, forked from https://github.com/simpleenergy/php-WebHDFS", | ||
| "minimum-stability": "stable", | ||
| "repositories": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
- Get rid of invalid 'CURLINFO_EFFECTIVE_URL' cURL option - Get rid of improper 'Content-Length' HTTP header - Remove version composer`s property, as it should be omitted relying on the documentation https://getcomposer.org/doc/04-schema.md#version
No description provided.