Skip to content

Commit

Permalink
Merge branch 'release/5.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadain committed Jan 4, 2022
2 parents a05340b + bd8d49d commit 1fa68fa
Show file tree
Hide file tree
Showing 8 changed files with 8,329 additions and 87 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 5.1.0

- Increase timeout to 2 minutes, as the new Hi Res Streams can
easily exceed the 1 minute limit.

## 5.0.0

- Update `/multi` endpoint to take the same format of stream data
Expand Down
3 changes: 2 additions & 1 deletion api/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ geoprocessing {

akka.http {
server {
request-timeout = 59 s
idle-timeout = 121 s
request-timeout = 120 s
}
parsing {
max-content-length = 50m
Expand Down
7,972 changes: 7,972 additions & 0 deletions examples/MultiOperationRequestHiResStreams.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ object Geoprocessing extends Build {
super.settings ++
Seq(
shellPrompt := { s => Project.extract(s).currentProject.id + " > " },
version := "5.0.0",
version := "5.1.0",
scalaVersion := Version.scala,
organization := "org.wikiwatershed.mmw.geoprocessing",
name := "mmw-geoprocessing",
Expand Down
6 changes: 3 additions & 3 deletions scripts/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ name = "pypi"

[packages]

requests = "==2.20.0"
aiohttp = "==3.0.9"
backoff = "==1.4.3"
requests = "==2.26.0"
aiohttp = "==3.8.0"
backoff = "==1.11.1"


[dev-packages]
Expand Down
425 changes: 344 additions & 81 deletions scripts/Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/benchmark-sync
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ huc12_file = 'RasterGroupedCount_LittleNeshaminy_HUC12.json'
rga_file = 'RasterGroupedAverage.json'
rlj_file = 'RasterLinesJoin_Schuylkill_HUC08.json'
rs_file = 'RasterSummary_Schuylkill_HUC08.json'
multi_subbasin_file = 'MultiOperationRequest.json'
multi_subbasin_file = 'MultiOperationRequestHiResStreams.json'
multi_mapshed_file = 'MultiOperationRequestHUC8.json'

def make_multi_request(input_file, operation_name):
Expand Down

0 comments on commit 1fa68fa

Please sign in to comment.