Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #10 from USGS-EROS/develop
Browse files Browse the repository at this point in the history
4.2.4
  • Loading branch information
cgaustin authored May 29, 2019
2 parents 1720229 + 575f071 commit c5dc50b
Show file tree
Hide file tree
Showing 3 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
@@ -1,4 +1,4 @@
(defproject lcmap-mastodon "3.2.4"
(defproject lcmap-mastodon "4.2.4"
:description "Functions for LCMAP data curation"
:url "https://eros.usgs.gov"
:license {:name "Unlicense"
Expand Down
2 changes: 1 addition & 1 deletion src/mastodon/clj/server.clj
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
(compojure/GET "/status/:tileid{[0-9]{6}}" [tileid] (get-status tileid request))
(compojure/GET "/config" [] (get-config request))
(compojure/GET "/healthy" [] (healthy request))
(compojure/POST "/bulk-ingest" [] (bulk-ingest request))))
(compojure/POST "/ingest" [] (bulk-ingest request))))

(defn response-handler
[routes]
Expand Down
2 changes: 1 addition & 1 deletion src/mastodon/cljs/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
(go
(let [tifs (<! ingest-channel)
partifs (partition partition-level partition-level "" tifs)
ard-resource (str ard-host "/bulk-ingest")]
ard-resource (str ard-host "/ingest")]

(doseq [t partifs]
(let [response (<! (http/post-request ard-resource {"urls" (string/join "," t)}))
Expand Down

0 comments on commit c5dc50b

Please # to comment.