Skip to content

Commit

Permalink
Merge 6c584fa into 992a429
Browse files Browse the repository at this point in the history
  • Loading branch information
pratid committed Jan 12, 2015
2 parents 992a429 + 6c584fa commit 2a0d607
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
8 changes: 6 additions & 2 deletions ngsi_adapter/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ attributes, and forward them through a NGSI Context Broker.
Installation
============

Adapter is distributed as a Debian (.deb) package. Assuming FI WARE package
Adapter is distributed as a Debian (.deb) package. Assuming FIWARE package
repositories are configured, just use the proper tool (such as ``apt-get``)
to install ``fiware-monitoring-ngsi-adapter`` package. These distributions are
currently supported:
Expand Down Expand Up @@ -87,6 +87,10 @@ an object *EntityData*.
Changelog
=========

Version 1.2.1

- Minor bugs resolved

Version 1.2.0

- Add new log format (issue #25)
Expand All @@ -112,4 +116,4 @@ Version 1.0.0
License
=======

\(c) 2013-2014 Telefónica I+D, Apache License 2.0
\(c) 2013-2015 Telefónica I+D, Apache License 2.0
6 changes: 6 additions & 0 deletions ngsi_adapter/script/build/files/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fiware-monitoring-ngsi-adapter (1.2.1) precise; urgency=low

* Minor bugs resolved

-- Telefónica I+D <opensource@tid.es> Mon, 12 Jan 2015 18:30:00 +0200

fiware-monitoring-ngsi-adapter (1.2.0) precise; urgency=low

* Included new log format (issue #25)
Expand Down
2 changes: 1 addition & 1 deletion ngsi_adapter/src/lib/adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function asyncRequestListener(request, response) {
logger.error(err.message);
}
}
logger.info('Response status %d %s', response.statusCode, http.STATUS_CODES[response.statusCode]);
logger.info('Response status %d %s', status, http.STATUS_CODES[status]);
response.writeHead(status);
response.end();
});
Expand Down

0 comments on commit 2a0d607

Please sign in to comment.