Skip to content
Open
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
6 changes: 2 additions & 4 deletions walib/istsos/services/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,6 @@ def executePost(self):
if "ForceInsert" in self.json:
ForceInsert = et.SubElement(root, "{%s}ForceInsert" % ns['sos'])
ForceInsert.text = self.json["ForceInsert"]

Observation = et.SubElement(root, "{%s}Observation" % ns['om'])

procedure = et.SubElement(Observation, "{%s}procedure" % ns['om'])
Expand Down Expand Up @@ -825,7 +824,6 @@ def executePost(self):
headers = {"Content-type": "text/xml"}
if 'HTTP_AUTHORIZATION' in self.waEnviron:
headers['Authorization'] = self.waEnviron['HTTP_AUTHORIZATION']

response = requests.post(
self.serviceconf.serviceurl["url"],
data=iostring,
Expand All @@ -840,8 +838,8 @@ def executePost(self):

else:
self.setException(
"Insert observations failed - Communication: %s %s - "
"Response: %s" % (response.status_code, e, response.text))
"Insert observations failed - Communication: %s - "
"Response: %s" % (response.status_code, response.text))

except Exception as e:
self.setException(
Expand Down