Skip to content

Commit

Permalink
fix missing 'model' parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchin committed Jan 6, 2025
1 parent bc06c37 commit a3e3492
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django/GWS/reconstruct/reconstruct_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@extract_params
@extract_model_and_times
@return_HttpResponse()
def reconstruct(request, params={}, times=[]):
def reconstruct(request, params={}, times=[], model=""):
"""http request to reconstruct points
this docstring is for developers only. the docs for users are in openapi_schema folder.
Expand Down
2 changes: 1 addition & 1 deletion test/test-dev-server.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

export GWS_SERVER_URL=http://localhost:18001
export GWS_SERVER_URL=http://localhost:18000

export GWS_TEST_VALIDATE_WITH_PYGPLATES=True
export GWS_TEST_DB_QUERY=False
Expand Down

0 comments on commit a3e3492

Please sign in to comment.