Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ sudo: required
dist: trusty

python:
- "2.7"
- "3.6"

git:
Expand Down
2 changes: 1 addition & 1 deletion pywps/app/Process.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def launch_next_process(self):
process = self.service.prepare_process_for_execution(process_identifier)
process._set_uuid(uuid)
process._setup_status_storage()
process.async = True
process.async_ = True
new_wps_response = ExecuteResponse(new_wps_request, process=process, uuid=uuid)
new_wps_response.store_status_file = True
process._run_async(new_wps_request, new_wps_response)
Expand Down
4 changes: 2 additions & 2 deletions pywps/inout/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from pywps.app.Common import Metadata
from pywps.exceptions import InvalidParameterValue
from pywps.inout import basic
from pywps.inout.storage.file import FileStorage
from pywps.inout.storage.file import FileStorageBuilder
from pywps.validator.mode import MODE
from pywps import configuration as config
from pywps.inout.formats import Format
Expand Down Expand Up @@ -191,7 +191,7 @@ def _json_reference(self, data):
if self.prop == 'url':
data["href"] = self.url
elif self.prop is not None:
self.storage = FileStorage()
self.storage = FileStorageBuilder().build()
data["href"] = self.get_url()

return data
Expand Down