summaryrefslogtreecommitdiffstats
path: root/utils/file.go
Commit message (Collapse)AuthorAgeFilesLines
* PLT-8314: Test Message Export Against S3 Bucket (#7957)Jonathan2017-12-071-0/+3
| | | | | | * Removed export directory config setting, in favour of hard-coding it to an 'export' directory under the local file directory. Improved the local file backend copy implementation to implicitly create the destination directory if it's missing * Fixed the tests
* Reorganize file util functionality (#7848)Chris2017-11-161-359/+0
| | | | | | | | * reorganize file util functionality * fix api test compilation * fix rebase issue
* Replace os.Rename with directory copy util in plugin extraction (#7825)Joram Wilander2017-11-131-0/+101
|
* several one-line panic, race, and logic fixes (#7766)Chris2017-11-031-1/+1
|
* PLT-7666: Clean up files on disk/s3 in data retention. (#7503)George Goldberg2017-09-251-0/+46
|
* Finally do away with NewLocAppError function. (#7498)George Goldberg2017-09-251-27/+27
| | | | | This cleans up the few NewLocAppError calls that crept in since the main bulk of them were removed, and finally removes the NewLocAppError function altogether.
* Renaming repoChristopher Speller2017-09-061-1/+1
|
* Revert "[PLT-7475] Add S3 region to system console and add S3 validation ↵Saturnino Abril2017-09-061-18/+18
| | | | | | | | (#7373)" (#7387) This reverts commit 8d680cf64ec7fb6c8b242b8048989d0f0550cb68. Move to 4.3. Will discuss more if validation is necessary.
* [PLT-7475] Add S3 region to system console and add S3 validation (#7373)Saturnino Abril2017-09-061-18/+18
| | | | | | | | | | * add S3 region to system console and add S3 validation * update translation message * add bool as return value to Validate* functions * update Validate* functions to be pure
* PLT-7517 Added setting to enable tracing of Amazon S3 connections (#7349)Harrison Healey2017-09-051-1/+11
| | | | | | | | | | | | * PLT-7517 Added setting to enable tracing of Amazon S3 connections * Removed unnecessary placeholders on boolean settings * Added AmazonS3Trace to diagnostics * Updated AmazonS3Trace setting name in system console * Removing extra colon
* set to default value with config is missing (#7320)Saturnino Abril2017-08-301-12/+12
|
* PLT-???? Prepare file upload infrastructure for Data Retention. (#7266)George Goldberg2017-08-251-0/+313
* Prepare file upload infrastructure for Data Retention. This commit prepares the file upload infrastructure for the data retention feature that is under construction. Changes are: * Move file management code to utils to allow access to it from jobs. * From now on, store all file uploads in a top level folder which is the date of the day on which they were uploaded. This commit is based on Harrison Healey's branch, but updated to work with the latest master. * Use NewAppError