projects
/
osm
/
osmclient.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
baa171a
)
Fix Content-Type for ns-create
author
Mike Marchetti
<mmarchetti@sandvine.com>
Fri, 31 Aug 2018 13:41:47 +0000
(09:41 -0400)
committer
Mike Marchetti
<mmarchetti@sandvine.com>
Fri, 31 Aug 2018 13:41:47 +0000
(09:41 -0400)
The ns-create POST Content-Type was incorrectly set by any previous
HTTP call.
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
osmclient/sol005/ns.py
patch
|
blob
|
history
diff --git
a/osmclient/sol005/ns.py
b/osmclient/sol005/ns.py
index
c60baa0
..
90bf8db
100644
(file)
--- a/
osmclient/sol005/ns.py
+++ b/
osmclient/sol005/ns.py
@@
-159,6
+159,11
@@
class Ns(object):
self._apiResource = '/ns_instances_content'
self._apiBase = '{}{}{}'.format(self._apiName,
self._apiVersion, self._apiResource)
+ headers = self._client._headers
+ headers['Content-Type'] = 'application/yaml'
+ http_header = ['{}: {}'.format(key,val)
+ for (key,val) in list(headers.items())]
+ self._http.set_http_header(http_header)
http_code, resp = self._http.post_cmd(endpoint=self._apiBase,
postfields_dict=ns)
#print 'HTTP CODE: {}'.format(http_code)