Skip to content

Commit

Permalink
Merge pull request #118 from MastodonC/feature/update-models
Browse files Browse the repository at this point in the history
Update models to snapshot
  • Loading branch information
acron0 committed Dec 22, 2015
2 parents dad63ea + 862dc74 commit 800adc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
[com.amazonaws/aws-java-sdk "1.10.27"]
[amazonica "0.3.35" :exclusions [com.amazonaws/aws-java-sdk]]
[clojure-csv/clojure-csv "2.0.1"]
[witan.models "0.1.3"]
[witan.models "0.1.4-SNAPSHOT"]
[clj-http "2.0.0"]
[slugger "1.0.1"]
[com.stuartsierra/component "0.3.0"]
Expand Down
4 changes: 2 additions & 2 deletions src/witan/app/model_execution.clj
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ TODO: will need to get own config files")
"Gets the content of an object
NOTE ASSUMPTION: the input files are csv with \n or \r\n as eol characters"
[key tag]
(log/info "Downloading " key "(tag" tag ")")
(log/info "Downloading" key "(tag" tag ")")
(let [presigned-download-url (ws3/presigned-download-url key "tmp")
slurped (slurp presigned-download-url)
result (prepare-data slurped)
_ (log/info "Finished downloading" key)]
_ (log/info "Finished downloading" key "- rows:" (count result))]
result))

(defn get-properties
Expand Down

0 comments on commit 800adc9

Please sign in to comment.