Skip to content

Commit

Permalink
Fixed #280
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderdean committed Jul 21, 2013
1 parent b8d2c3e commit 2ea07c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Expand Up @@ -41,7 +41,10 @@ def get_config()

# Add trailing slashes if needed to the buckets and download folder
config[:s3][:buckets].update(config[:s3][:buckets]){|k,v| Sluice::Storage::trail_slash(v)}
config[:download][:folder] = Sluice::Storage::trail_slash(config[:download][:folder])

unless config[:download][:folder].nil? # TODO: remove when Sluice's trail_slash can handle nil
config[:download][:folder] = Sluice::Storage::trail_slash(config[:download][:folder])
end

# Check we recognise the storage target
unless @@storage_targets.include?(config[:storage][:type])
Expand Down
5 changes: 2 additions & 3 deletions CHANGELOG
Expand Up @@ -12,14 +12,13 @@ Hive ETL: removed folder 3-enrich/hive-etl as no longer supported (#286)
Hive storage: updated hive-storage scripts to work with current Redshift-format flatfile (#290)
Infobright: removed folder 4-storage/infobright as not currently supported (#285)
Postgres: add Postgres table definition in atomic schema (#160)

StorageLoader: bumped to 0.1.0
StorageLoader: bumped Sluice 0.0.7 (#300)
StorageLoader: removed code to delete Hive ETL's empty event files (#306)
StorageLoader: fixed bug where download path has to be set (even when using Redshift) (#280)

StorageLoader: fixed bug where download path has to be set (even when using Redshift) (#280) - TODO
StorageLoader: added max_error and treat_empty_as_null as StorageLoader configuration values for Redshift (#273) - TODO
StorageLoader: tweaked ANALYZE and VACUUM commands (#283) - TODO
StorageLoader: added max_error and treat_empty_as_null as StorageLoader configuration values for Redshift (#273) - TODO

StorageLoader: added support for loading Postgres (#161) - TODO
StorageLoader: removed Infobright loading capability (#307) - TODO
Expand Down

0 comments on commit 2ea07c3

Please sign in to comment.