Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Regression in context agent after version update.
Browse files Browse the repository at this point in the history
Opaque data fields were not consumed correctly and so the opaque data scripts were not being called.
  • Loading branch information
timf committed Sep 30, 2009
1 parent 467708d commit 0203c57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ctx-agent/ctx/lib/workspace_ctx_retrieve.py
Expand Up @@ -1124,7 +1124,8 @@ def response2_parse_one_data(data, trace=False):
log.error("error, data has object in item list not length 2?")
return None

if attrtuple[0] == 'name':
namekey = "{%s}name" % NS_CTXDESC
if attrtuple[0] == namekey:
respdata.name = attrtuple[1]
if trace:
log.debug(" - data name: '%s'" % attrtuple[1])
Expand Down

0 comments on commit 0203c57

Please sign in to comment.