Skip to content

Commit

Permalink
Merge pull request #313 from onaio/turn-off-url-encoding-for-trigger-…
Browse files Browse the repository at this point in the history
…async-export-fn

Turn off url encoding for trigger async export fn
  • Loading branch information
FrankApiyo authored May 17, 2022
2 parents 0f3a731 + 0a38a18 commit 67474c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:milia-http-default-per-route "10"
:milia-http-threads "20"})

(defproject onaio/milia "0.7.5"
(defproject onaio/milia "0.7.6"
:description "The ona.io Clojure Web API Client."
:dependencies [;; CORE MILIA REQUIREMENTS
[cheshire "5.10.1"]
Expand Down
7 changes: 4 additions & 3 deletions src/milia/api/async_export.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,10 @@
on-error
on-done]}]]
(go
(let [export-suffix (build-export-suffix export-async-url
data-format
export-options)
(let [export-suffix (build-export-suffix
export-async-url
data-format
(assoc export-options :no-url-encode true))
export-url (make-url (type->endpoint data-type)
dataset-id
export-suffix)
Expand Down

0 comments on commit 67474c7

Please sign in to comment.