Skip to content

Conversation

@changev
Copy link
Member

@changev changev commented May 26, 2017

jenkins: depends on RackHD/on-core#280

Modified

_addRelation
_removeRelation
EditRelation

to keep data consistency

var enclNodeBefore = _.cloneDeep(enclosureNode);
enclNodeBefore.relations[0].targets = [];
var values = { "relations": [{"relationType": "encloses","targets":[]}] };
var computeNodeAfter = _.cloneDeep(computeNode);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'computeNodeAfter' is defined but never used.

updateFieldIfNotExistByIdentifier.resolves();

var relationToBeAdded = {relations: [{relationType: 'contains', targets: []}]};
var existSign = {relationType: 'contains'};

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'existSign' is defined but never used.

).then(function(modifiedNode){
expect(modifiedNode.relations).to.deep.equal(
[{relationType: 'contains', targets: [computeNode.id, computeNode2.id]}]
)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

.then(function(modifiedNode){
expect(modifiedNode.relations).to.deep.equal(
[{relationType: 'contains', targets: [computeNode.id, computeNode2.id]}]
)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

computeNode2.id
]}];
addListItemsIfNotExistByIdentifier.withArgs(rackNode.id, targetsToBeAadded)
.resolves(rackNodeAfter1)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

"targets": []
}
]
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

var enclRelationAfter = [];
expect(nodeApiService._removeRelation(enclNode, 'encloses', computeNode).relations)
.to.deep.equal(enclRelationAfter);
var targetsToBeRemoved = { "relations.0.targets": ["1234abcd1234abcd1234abcd"] }

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

});

it("_removeRelation should remove one relation when no target", function() {
it("_removeRelation should return node when passing targets to be removed is null \

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bad escaping of EOL. Use option multistr if needed.

expect(removeListItemsByIdentifier).to.have.been
.calledWith(enclNode.id, relationsToBeRemoved);
expect(node).to.deep.equal(enclAfter);
})

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

]
};

var relationsToBeRemoved = { relations: [{ relationType: "encloses", targets: [] }] }

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

@changev changev force-pushed the bugfix/enclosure-update-data-consistency branch from 4c674ce to 9087f88 Compare May 26, 2017 12:21
.to.have.been.calledWith(enclNode.id, targetsToBeRemoved);
expect(removeListItemsByIdentifier)
.to.have.been.calledWith(enclNode.id, relationsToBeRemoved);
})

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

removeListItemsByIdentifier.withArgs(enclNode.id, targetsToBeRemoved)
.resolves(enclNodeAfter)
removeListItemsByIdentifier.withArgs(enclNode.id, relationsToBeRemoved)
.resolves(enclNodeAfter1)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

@changev changev force-pushed the bugfix/enclosure-update-data-consistency branch from 9087f88 to f9d7ffc Compare May 26, 2017 12:23
@changev
Copy link
Member Author

changev commented May 27, 2017

test this please

type: 'enclosure'
};

expect(nodeApiService._removeRelation(enclNode, 'encloses', computeNode))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The function that begins with _ is considered as private function, in unit-test, it better to focus on test those public function (or interfaces). The private function is purely the design internal.

This will leave us the flexibility to refactor the code in future (keep interface unmodified, but change implementation)

Copy link
Member

@anhou anhou May 31, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yyscamper There's still debates for unit test for private methods. although I also have a preference for not testing private. my opinion is no objection for this as long as the codes are qualified :)

@iceiilin
Copy link
Member

iceiilin commented May 31, 2017

a little hard to grasp all the details here. would prefer an oral explanation when available.

@changev changev force-pushed the bugfix/enclosure-update-data-consistency branch from f9d7ffc to fa5dd8e Compare June 2, 2017 20:16
computeNode.id,
{"relations.0.targets": computeNode.relations[0].targets[0]
});
})

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

addFieldIfNotExistByIdentifier.resolves();
addListItemsIfNotExistByIdentifier.resolves();
return nodeApiService._addRelation(enclosureNode, 'encloses', [computeNode.id])
.then(function(modifiedNode){

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'modifiedNode' is defined but never used.

@changev changev force-pushed the bugfix/enclosure-update-data-consistency branch 3 times, most recently from 245f959 to b16f2dc Compare June 7, 2017 10:46
var self = this;

if (!node || !type || !_.has(node, 'relations')) {
return;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you want to align all return as promise, this return and next one should return Promise.resolve.

@@ -117,85 +129,62 @@ function nodeApiServiceFactory(
if (!(node && type && targets)) {
return;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above, you'd better return a Promise as below code return a Promise.

Copy link
Member

@iceiilin iceiilin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Complex and great work!

var targetsItems = _.map([].concat(targets), function(targetNode) {
targetNode = targetNode.id || targetNode;
if(targetNode === node.id ) {
throw new Error('Node cannot have relationship '+type+' with itself');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

may use promise.reject here. Same as below.

@@ -84,6 +84,8 @@ function nodeApiServiceFactory(
* @return {Object} node after removing relation
*/
NodeApiService.prototype._removeRelation = function removeRelation(node, type, targets) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since it is used in api/2.0/nodes, it might be better to remove the "_" prefix, which indicates a private function. Same as _addRelation

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The function description could be adjusted accordingly to make it more clear.

@pengz1
Copy link
Member

pengz1 commented Jun 12, 2017

+1, however my suggestion is that we should refine relation model, like OBM we should create a mongo model for relation for better and easy operations on it.

@changev changev force-pushed the bugfix/enclosure-update-data-consistency branch from b16f2dc to 9e236cd Compare June 13, 2017 08:42
_.pull(enclNodeAfter1.relations, enclNodeAfter1.relations[0]);

removeListItemsByIdentifier.withArgs(enclNode.id, targetsToBeRemoved)
.resolves(enclNodeAfter)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

// Can not make sure prevent every exception in high concurrency.
if (type === 'containedBy' &&
modifiedNode.relations[index].targets.length + targets.length > 1) {
return Promise.reject(new Error("Node "+node.id+" can only be contained by one node"));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line is too long.

var targetsItems = _.map([].concat(targets), function(targetNode) {
targetNode = targetNode.id || targetNode;
if(targetNode === node.id ) {
return Promise.reject(new Error('Node cannot have relationship '+type+' with itself'));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line is too long.

_.pull(enclNodeAfter1.relations, enclNodeAfter1.relations[0]);

removeListItemsByIdentifier.withArgs(enclNode.id, targetsToBeRemoved)
.resolves(enclNodeAfter)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

// Can not make sure prevent every exception in high concurrency.
if (type === 'containedBy' &&
modifiedNode.relations[index].targets.length + targets.length > 1) {
return Promise.reject(new Error("Node "+node.id+" can only be contained by one node"));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line is too long.

var targetsItems = _.map([].concat(targets), function(targetNode) {
targetNode = targetNode.id || targetNode;
if(targetNode === node.id ) {
return Promise.reject(new Error('Node cannot have relationship '+type+' with itself'));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line is too long.

_.pull(enclNodeAfter1.relations, enclNodeAfter1.relations[0]);

removeListItemsByIdentifier.withArgs(enclNode.id, targetsToBeRemoved)
.resolves(enclNodeAfter)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

// Can not make sure prevent every exception in high concurrency.
if (type === 'containedBy' &&
modifiedNode.relations[index].targets.length + targets.length > 1) {
return Promise.reject(new Error("Node "+node.id+" can only be contained by one node"));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line is too long.

var targetsItems = _.map([].concat(targets), function(targetNode) {
targetNode = targetNode.id || targetNode;
if(targetNode === node.id ) {
return Promise.reject(new Error('Node cannot have relationship '+type+' with itself'));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line is too long.

@JenkinsRHD
Copy link
Contributor

BUILD on-http #225 : FAILURE

BUILD on-http #225 Error Logs ▼Test Name: test_node_catalogs Error Details: Node catalog is empty! Stack Trace: Traceback (most recent call last): File "/usr/lib/python2.7/unittest/case.py", line 331, in run testMethod() File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest self._testFunc() File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func compatability.capture_type_error(s_func) File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error func() File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func func(test_case.state.get_state()) File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/nodes_tests.py", line 255, in test_node_catalogs assert_not_equal(0, len(resp), message='Node catalog is empty!') File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/asserts.py", line 151, in assert_not_equal raise ASSERTION_ERROR(message) AssertionError: Node catalog is empty!

Test Name: setup_ipmi_obm
Error Details: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-Na/SU8KZU8HoerQNC30r9rTaQSs"', 'Date': 'Tue, 13 Jun 2017 10:55:31 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (bmc).","status":"404","UUID":"5ecd14d5-eae7-4ee6-8d95-0b21db19652b"}

-------------------- >> begin captured logging << --------------------
tests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc46e1cf5baa6096dc934)
tests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc4711cf5baa6096dc935)
tests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc4761cf5baa6096dc936)
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/obm_tests.py", line 27, in setup_ipmi_obm
assert_equal(len(obmSettings().setup_nodes(service_type='ipmi-obm-service')), 0)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/obm_settings.py", line 65, in setup_nodes
if self._set_ipmi(uid) == False:
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/obm_settings.py", line 23, in _set_ipmi
Api().nodes_get_catalog_source_by_id(uid,'bmc')
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/apis/api_api.py", line 1862, in nodes_get_catalog_source_by_id
callback=params.get('callback'))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 322, in call_api
response_type, auth_settings, callback)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 149, in __call_api
post_params=post_params, body=body)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 342, in request
headers=headers)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 184, in GET
query_params=query_params)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 177, in request
raise ApiException(http_resp=r)
'(404)\nReason: Not Found\nHTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-Na/SU8KZU8HoerQNC30r9rTaQSs"', 'Date': 'Tue, 13 Jun 2017 10:55:31 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})\nHTTP response body: {"message":"No Catalogs Found for Source (bmc).","status":"404","UUID":"5ecd14d5-eae7-4ee6-8d95-0b21db19652b"}\n\n-------------------- >> begin captured logging << --------------------\ntests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc46e1cf5baa6096dc934)\ntests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc4711cf5baa6096dc935)\ntests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc4761cf5baa6096dc936)\n--------------------- >> end captured logging << ---------------------'

Test Name: test_catalogs
Error Details: Catalog dmi not found in node 593fc46e1cf5baa6096dc934!
Stack Trace: Traceback (most recent call last):
File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/catalogs_tests.py", line 48, in test_catalogs
fail('Catalog {0} not found in node {1}!'.format(source,node.get('id')))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/asserts.py", line 220, in fail
raise ASSERTION_ERROR(message)
AssertionError: Catalog dmi not found in node 593fc46e1cf5baa6096dc934!

Test Name: test_workflows_get
Error Details: (400)
Reason: Bad Request
HTTP response headers: HTTPHeaderDict({'Content-Length': '89', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"59-2GjXNevMhZ14GI/cejbeMMoEcEw"', 'Date': 'Tue, 13 Jun 2017 10:55:35 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"Connect Failed","status":"400","UUID":"ea9541bb-81ce-4fe1-aabd-48638ef468b2"}

Stack Trace: Traceback (most recent call last):
File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/workflows_tests.py", line 69, in test_workflows_get
Api().workflows_get()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/apis/api_api.py", line 8075, in workflows_get
callback=params.get('callback'))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 322, in call_api
response_type, auth_settings, callback)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 149, in __call_api
post_params=post_params, body=body)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 342, in request
headers=headers)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 184, in GET
query_params=query_params)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 177, in request
raise ApiException(http_resp=r)
ApiException: (400)
Reason: Bad Request
HTTP response headers: HTTPHeaderDict({'Content-Length': '89', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"59-2GjXNevMhZ14GI/cejbeMMoEcEw"', 'Date': 'Tue, 13 Jun 2017 10:55:35 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"Connect Failed","status":"400","UUID":"ea9541bb-81ce-4fe1-aabd-48638ef468b2"}

Test Name: test_tag_create
Error Details: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-AI2VuhcvBS04RfppDrGbVJYG0Ck"', 'Date': 'Tue, 13 Jun 2017 10:56:02 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (dmi).","status":"404","UUID":"414d7f70-ff7d-4860-9bcc-435f9b994625"}

Stack Trace: Traceback (most recent call last):
File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/tags_tests.py", line 45, in test_tag_create
tagsWithRules = self.__create_tag_rule(n.get('id'))
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/tags_tests.py", line 26, in __create_tag_rule
Api().nodes_get_catalog_source_by_id(identifier=id,source='dmi')
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/apis/api_api.py", line 1862, in nodes_get_catalog_source_by_id
callback=params.get('callback'))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 322, in call_api
response_type, auth_settings, callback)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 149, in __call_api
post_params=post_params, body=body)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 342, in request
headers=headers)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 184, in GET
query_params=query_params)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 177, in request
raise ApiException(http_resp=r)
ApiException: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-AI2VuhcvBS04RfppDrGbVJYG0Ck"', 'Date': 'Tue, 13 Jun 2017 10:56:02 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (dmi).","status":"404","UUID":"414d7f70-ff7d-4860-9bcc-435f9b994625"}

Test Name: get_sku_nodes
Error Details: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-OfIxx9L4sxCk22Gpv76UC1dG50A"', 'Date': 'Tue, 13 Jun 2017 10:56:04 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (dmi).","status":"404","UUID":"a35b7920-255b-49f5-9960-e509c823838b"}

Stack Trace: Traceback (most recent call last):
File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/skupack_tests.py", line 148, in get_sku_nodes
Api().nodes_get_catalog_source_by_id(identifier=node_id,source='dmi')
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/apis/api_api.py", line 1862, in nodes_get_catalog_source_by_id
callback=params.get('callback'))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 322, in call_api
response_type, auth_settings, callback)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 149, in __call_api
post_params=post_params, body=body)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 342, in request
headers=headers)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 184, in GET
query_params=query_params)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 177, in request
raise ApiException(http_resp=r)
ApiException: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-OfIxx9L4sxCk22Gpv76UC1dG50A"', 'Date': 'Tue, 13 Jun 2017 10:56:04 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (dmi).","status":"404","UUID":"a35b7920-255b-49f5-9960-e509c823838b"}

Test Name: post_skupacks
Error Details: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-XarF6XFxM7p5k3hNNaVWbd0xuC0"', 'Date': 'Tue, 13 Jun 2017 10:56:09 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (dmi).","status":"404","UUID":"2ccf9a45-b1e8-476c-b339-ca8075feaeba"}

Stack Trace: Traceback (most recent call last):
File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/sel_alert_poller_tests.py", line 54, in post_skupacks
Api().nodes_get_catalog_source_by_id(identifier=node_id, source='dmi')
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/apis/api_api.py", line 1862, in nodes_get_catalog_source_by_id
callback=params.get('callback'))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 322, in call_api
response_type, auth_settings, callback)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 149, in __call_api
post_params=post_params, body=body)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 342, in request
headers=headers)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 184, in GET
query_params=query_params)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 177, in request
raise ApiException(http_resp=r)
ApiException: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-XarF6XFxM7p5k3hNNaVWbd0xuC0"', 'Date': 'Tue, 13 Jun 2017 10:56:09 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (dmi).","status":"404","UUID":"2ccf9a45-b1e8-476c-b339-ca8075feaeba"}

Test Name: setup_ipmi_obm
Error Details: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-t1UYP63PVapQ6vE0nvqromcU7i0"', 'Date': 'Tue, 13 Jun 2017 10:59:19 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})
HTTP response body: {"message":"No Catalogs Found for Source (bmc).","status":"404","UUID":"2d9b2801-d8d9-43be-97f5-c42a02960d66"}

-------------------- >> begin captured logging << --------------------
tests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc55e7c89959509ccc176)
tests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc5617c89959509ccc177)
tests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc5627c89959509ccc178)
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/obm_tests.py", line 27, in setup_ipmi_obm
assert_equal(len(obmSettings().setup_nodes(service_type='ipmi-obm-service')), 0)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/obm_settings.py", line 65, in setup_nodes
if self._set_ipmi(uid) == False:
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/obm_settings.py", line 23, in _set_ipmi
Api().nodes_get_catalog_source_by_id(uid,'bmc')
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/apis/api_api.py", line 1862, in nodes_get_catalog_source_by_id
callback=params.get('callback'))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 322, in call_api
response_type, auth_settings, callback)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 149, in __call_api
post_params=post_params, body=body)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/api_client.py", line 342, in request
headers=headers)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 184, in GET
query_params=query_params)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/on_http_api2_0/rest.py", line 177, in request
raise ApiException(http_resp=r)
'(404)\nReason: Not Found\nHTTP response headers: HTTPHeaderDict({'Content-Length': '110', 'X-Powered-By': 'Express', 'Connection': 'keep-alive', 'ETag': 'W/"6e-t1UYP63PVapQ6vE0nvqromcU7i0"', 'Date': 'Tue, 13 Jun 2017 10:59:19 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8'})\nHTTP response body: {"message":"No Catalogs Found for Source (bmc).","status":"404","UUID":"2d9b2801-d8d9-43be-97f5-c42a02960d66"}\n\n-------------------- >> begin captured logging << --------------------\ntests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc55e7c89959509ccc176)\ntests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc5617c89959509ccc177)\ntests.api.v2_0.obm_settings: WARNING: No OBM settings for node type compute (id=593fc5627c89959509ccc178)\n--------------------- >> end captured logging << ---------------------'

Test Name: test_install_min_ubuntu
Error Details: Failure running Graph.InstallUbuntu
-------------------- >> begin captured logging << --------------------
tests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set, use DHCP
tests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set
tests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fc32d36a547ac0917ef41
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
tests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fc33436a547ac0917ef43
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
tests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fc33136a547ac0917ef42
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
kombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>
kombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.
>
kombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
kombu.mixins: INFO: Connected to amqp://guest:@127.0.0.1:9091//
amqp: DEBUG: using channel_id: 1
amqp: DEBUG: Open OK!
kombu.mixins: INFO: Connected to amqp://guest:
@127.0.0.1:9091//
amqp: DEBUG: using channel_id: 1
amqp: DEBUG: Open OK!
kombu.mixins: INFO: Connected to amqp://guest:**@127.0.0.1:9091//
amqp: DEBUG: using channel_id: 1
amqp: DEBUG: Channel open
amqp: DEBUG: Channel open
amqp: DEBUG: Channel open
modules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fc32d36a547ac0917ef41), stopping..
kombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.
>
modules.worker: INFO: stopping subtask for 593fc32d36a547ac0917ef41
amqp: DEBUG: Closed channel #1
modules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fc33436a547ac0917ef43), stopping..
kombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>
modules.worker: INFO: stopping subtask for 593fc33436a547ac0917ef43
amqp: DEBUG: Closed channel #1
modules.worker: ERROR: subtask timeout after 2701 seconds, (id=593fc33136a547ac0917ef42), stopping..
kombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.
>
modules.worker: INFO: stopping subtask for 593fc33136a547ac0917ef42
amqp: DEBUG: Closed channel #1
tests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallUbuntu, node 593fc32d36a547ac0917ef41
tests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallUbuntu, node 593fc33436a547ac0917ef43
tests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallUbuntu, node 593fc33136a547ac0917ef42
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 440, in test_install_min_ubuntu
self.install_ubuntu('trusty', 'install_ubuntu_payload_iso_minimal.json')
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 331, in install_ubuntu
self.__post_workflow(graph_name, nodes, body)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 112, in __post_workflow
workflows().post_workflows(graph_name, timeout_sec=DEFAULT_TIMEOUT_SEC, nodes=nodes, data=body)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/workflows_tests.py", line 216, in post_workflows
self.run_workflow_tasks(self.__tasks, timeout_sec)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/workflows_tests.py", line 270, in run_workflow_tasks
fail('Failure running {0}'.format(self.__graph_name))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/asserts.py", line 220, in fail
raise ASSERTION_ERROR(message)
"Failure running Graph.InstallUbuntu\n-------------------- >> begin captured logging << --------------------\ntests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set, use DHCP\ntests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set\ntests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fc32d36a547ac0917ef41\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\ntests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fc33436a547ac0917ef43\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\ntests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fc33136a547ac0917ef42\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\nkombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nkombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nkombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\nkombu.mixins: INFO: Connected to amqp://guest:@127.0.0.1:9091//\namqp: DEBUG: using channel_id: 1\namqp: DEBUG: Open OK!\nkombu.mixins: INFO: Connected to amqp://guest:@127.0.0.1:9091//\namqp: DEBUG: using channel_id: 1\namqp: DEBUG: Open OK!\nkombu.mixins: INFO: Connected to amqp://guest:**@127.0.0.1:9091//\namqp: DEBUG: using channel_id: 1\namqp: DEBUG: Channel open\namqp: DEBUG: Channel open\namqp: DEBUG: Channel open\nmodules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fc32d36a547ac0917ef41), stopping..\nkombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nmodules.worker: INFO: stopping subtask for 593fc32d36a547ac0917ef41\namqp: DEBUG: Closed channel #1\nmodules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fc33436a547ac0917ef43), stopping..\nkombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nmodules.worker: INFO: stopping subtask for 593fc33436a547ac0917ef43\namqp: DEBUG: Closed channel #1\nmodules.worker: ERROR: subtask timeout after 2701 seconds, (id=593fc33136a547ac0917ef42), stopping..\nkombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nmodules.worker: INFO: stopping subtask for 593fc33136a547ac0917ef42\namqp: DEBUG: Closed channel #1\ntests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallUbuntu, node 593fc32d36a547ac0917ef41\ntests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallUbuntu, node 593fc33436a547ac0917ef43\ntests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallUbuntu, node 593fc33136a547ac0917ef42\n--------------------- >> end captured logging << ---------------------"

Test Name: test03_preload_default_sku
Error Details: Incorrect HTTP return code, expecting 201 or 409, got 400
-------------------- >> begin captured stdout << ---------------------
restful: Action = post , URL = http://localhost:9090/api/2.0/skus
restful: Status code = 400

--------------------- >> end captured stdout << ----------------------
-------------------- >> begin captured logging << --------------------
infra.run: DEBUG: relaying set_test((None,)) to all trackers {}
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test02_preload_sku_packs (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test02_preload_sku_packs (test.deploy.rackhd_stack_init.rackhd_stack_init)
root: INFO: +1.03 - STARTING TEST: [test03_preload_default_sku (test.deploy.rackhd_stack_init.rackhd_stack_init)]
infra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test03_preload_default_sku>),)) to all trackers {}
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test03_preload_default_sku (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test03_preload_default_sku (test.deploy.rackhd_stack_init.rackhd_stack_init)
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/home/jenkins/workspace/on-http/RackHD/test/deploy/rackhd_stack_init.py", line 115, in test03_preload_default_sku
'Incorrect HTTP return code, expecting 201 or 409, got ' + str(api_data['status']))
File "/usr/lib/python2.7/unittest/case.py", line 805, in assertIn
self.fail(self._formatMessage(msg, standardMsg))
File "/usr/lib/python2.7/unittest/case.py", line 412, in fail
raise self.failureException(msg)
'Incorrect HTTP return code, expecting 201 or 409, got 400\n-------------------- >> begin captured stdout << ---------------------\nrestful: Action = post , URL = http://localhost:9090/api/2.0/skus\nrestful: Status code = 400 \n\n\n--------------------- >> end captured stdout << ----------------------\n-------------------- >> begin captured logging << --------------------\ninfra.run: DEBUG: relaying set_test((None,)) to all trackers {}\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test02_preload_sku_packs (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test02_preload_sku_packs (test.deploy.rackhd_stack_init.rackhd_stack_init)\nroot: INFO: +1.03 - STARTING TEST: [test03_preload_default_sku (test.deploy.rackhd_stack_init.rackhd_stack_init)]\ninfra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test03_preload_default_sku>),)) to all trackers {}\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test03_preload_default_sku (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test03_preload_default_sku (test.deploy.rackhd_stack_init.rackhd_stack_init)\n--------------------- >> end captured logging << ---------------------'

Test Name: test09_check_discovery
Error Details: string indices must be integers
-------------------- >> begin captured stdout << ---------------------
restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows
restful: Status code = 400

--------------------- >> end captured stdout << ----------------------
-------------------- >> begin captured logging << --------------------
infra.run: DEBUG: relaying set_test((None,)) to all trackers {}
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test08_check_compute_nodes (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test08_check_compute_nodes (test.deploy.rackhd_stack_init.rackhd_stack_init)
root: INFO: +1.09 - STARTING TEST: [test09_check_discovery (test.deploy.rackhd_stack_init.rackhd_stack_init)]
infra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test09_check_discovery>),)) to all trackers {}
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test09_check_discovery (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test09_check_discovery (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: INFO_5: **** Waiting for node Discovery to complete.

--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/home/jenkins/workspace/on-http/RackHD/test/deploy/rackhd_stack_init.py", line 194, in test09_check_discovery
self.assertTrue(self.check_for_active_workflows(MAX_CYCLES), "Node discovery not completed")
File "/home/jenkins/workspace/on-http/RackHD/test/deploy/rackhd_stack_init.py", line 213, in check_for_active_workflows
if fit_common.check_active_workflows(node_id):
File "/home/jenkins/workspace/on-http/RackHD/test/common/fit_common.py", line 968, in check_active_workflows
if item['status'] in ['running', 'pending']:
'string indices must be integers\n-------------------- >> begin captured stdout << ---------------------\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows\nrestful: Status code = 400 \n\n\n--------------------- >> end captured stdout << ----------------------\n-------------------- >> begin captured logging << --------------------\ninfra.run: DEBUG: relaying set_test((None,)) to all trackers {}\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test08_check_compute_nodes (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test08_check_compute_nodes (test.deploy.rackhd_stack_init.rackhd_stack_init)\nroot: INFO: +1.09 - STARTING TEST: [test09_check_discovery (test.deploy.rackhd_stack_init.rackhd_stack_init)]\ninfra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test09_check_discovery>),)) to all trackers {}\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test09_check_discovery (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test09_check_discovery (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: INFO_5: **** Waiting for node Discovery to complete.\n\n--------------------- >> end captured logging << ---------------------'

Test Name: test12_check_pollers
Error Details: All pollers are not active
-------------------- >> begin captured stdout << ---------------------
restful: Action = get , URL = http://localhost:9090/api/2.0/pollers
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current
restful: Status code = 204

--------------------- >> end captured stdout << ----------------------
-------------------- >> begin captured logging << --------------------
infra.run: DEBUG: relaying set_test((None,)) to all trackers {}
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)
root: INFO: +1.12 - STARTING TEST: [test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)]
infra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test12_check_pollers>),)) to all trackers {}
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: INFO_5: **** Waiting for pollers.
test.run: INFO_5: **** Waiting for pollers data.
test.run: ERROR: Poller IDs with error or no data: [
"593fce3d7112a170163ec0fa",
"593fce3d7112a170163ec0fb",
"593fce3d7112a170163ec0fc",
"593fce3d7112a170163ec0fe",
"593fce3d7112a170163ec0ff"
]
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/home/jenkins/workspace/on-http/RackHD/test/deploy/rackhd_stack_init.py", line 263, in test12_check_pollers
self.assertTrue(self.check_for_active_poller_data(MAX_CYCLES), 'All pollers are not active')
File "/usr/lib/python2.7/unittest/case.py", line 424, in assertTrue
raise self.failureException(msg)
'All pollers are not active\n-------------------- >> begin captured stdout << ---------------------\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current\nrestful: Status code = 204 \n\n\n--------------------- >> end captured stdout << ----------------------\n-------------------- >> begin captured logging << --------------------\ninfra.run: DEBUG: relaying set_test((None,)) to all trackers {}\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)\nroot: INFO: +1.12 - STARTING TEST: [test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)]\ninfra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test12_check_pollers>),)) to all trackers {}\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: INFO_5: **** Waiting for pollers.\ntest.run: INFO_5: **** Waiting for pollers data.\ntest.run: ERROR: Poller IDs with error or no data: [\n "593fce3d7112a170163ec0fa", \n "593fce3d7112a170163ec0fb", \n "593fce3d7112a170163ec0fc", \n "593fce3d7112a170163ec0fe", \n "593fce3d7112a170163ec0ff"\n]\n--------------------- >> end captured logging << ---------------------'

Test Name: test13_load_ucs_manager_config
Error Details: <urlopen error [Errno 111] Connection refused>
-------------------- >> begin captured logging << --------------------
infra.run: DEBUG: relaying set_test((None,)) to all trackers {}
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)
root: INFO: +1.13 - STARTING TEST: [test13_load_ucs_manager_config (test.deploy.rackhd_stack_init.rackhd_stack_init)]
infra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test13_load_ucs_manager_config>),)) to all trackers {}
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test13_load_ucs_manager_config (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test13_load_ucs_manager_config (test.deploy.rackhd_stack_init.rackhd_stack_init)
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/home/jenkins/workspace/on-http/RackHD/test/deploy/rackhd_stack_init.py", line 321, in test13_load_ucs_manager_config
self.assertTrue(handle.login(), 'Failed to log in to UCS Manager!')
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/ucsmsdk/ucshandle.py", line 119, in login
return self._login(auto_refresh, force)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/ucsmsdk/ucssession.py", line 538, in _login
response = self.post_elem(elem)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/ucsmsdk/ucssession.py", line 258, in post_elem
response_str = self.post_xml(xml_str)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/ucsmsdk/ucssession.py", line 209, in post_xml
response_str = self.post(uri=ucsm_uri, data=xml_str, read=read)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/ucsmsdk/ucssession.py", line 191, in post
response = self.__driver.post(uri=uri, data=data, read=read)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/ucsmsdk/ucsdriver.py", line 207, in post
response = opener.open(request)
File "/usr/lib/python2.7/urllib2.py", line 404, in open
response = self._open(req, data)
File "/usr/lib/python2.7/urllib2.py", line 422, in _open
'_open', req)
File "/usr/lib/python2.7/urllib2.py", line 382, in _call_chain
result = func(*args)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/ucsmsdk/ucsdriver.py", line 57, in https_open
return self.do_open(TLS1Connection, req)
File "/usr/lib/python2.7/urllib2.py", line 1184, in do_open
raise URLError(err)
'<urlopen error [Errno 111] Connection refused>\n-------------------- >> begin captured logging << --------------------\ninfra.run: DEBUG: relaying set_test((None,)) to all trackers {}\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)\nroot: INFO: +1.13 - STARTING TEST: [test13_load_ucs_manager_config (test.deploy.rackhd_stack_init.rackhd_stack_init)]\ninfra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test13_load_ucs_manager_config>),)) to all trackers {}\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f8238e5f790> test=test13_load_ucs_manager_config (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f82392ba410> test=test13_load_ucs_manager_config (test.deploy.rackhd_stack_init.rackhd_stack_init)\n--------------------- >> end captured logging << ---------------------'

Test Name: test_install_centos_6_minimal
Error Details: Failure running Graph.InstallCentOS
-------------------- >> begin captured logging << --------------------
tests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set
tests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fd2162578199a09f5917c
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
tests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fd2102578199a09f5917a
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
tests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fd2102578199a09f5917b
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
kombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>
kombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.
>
kombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
kombu.mixins: INFO: Connected to amqp://guest:@127.0.0.1:9091//
amqp: DEBUG: using channel_id: 1
amqp: DEBUG: Open OK!
kombu.mixins: INFO: Connected to amqp://guest:
@127.0.0.1:9091//
amqp: DEBUG: using channel_id: 1
amqp: DEBUG: Open OK!
kombu.mixins: INFO: Connected to amqp://guest:**@127.0.0.1:9091//
amqp: DEBUG: using channel_id: 1
amqp: DEBUG: Channel open
amqp: DEBUG: Channel open
amqp: DEBUG: Channel open
modules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fd2162578199a09f5917c), stopping..
kombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.
>
modules.worker: INFO: stopping subtask for 593fd2162578199a09f5917c
amqp: DEBUG: Closed channel #1
modules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fd2102578199a09f5917a), stopping..
kombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>
modules.worker: INFO: stopping subtask for 593fd2102578199a09f5917a
amqp: DEBUG: Closed channel #1
modules.worker: ERROR: subtask timeout after 2701 seconds, (id=593fd2102578199a09f5917b), stopping..
kombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.
>
modules.worker: INFO: stopping subtask for 593fd2102578199a09f5917b
amqp: DEBUG: Closed channel #1
tests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallCentOS, node 593fd2162578199a09f5917c
tests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallCentOS, node 593fd2102578199a09f5917a
tests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallCentOS, node 593fd2102578199a09f5917b
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 500, in test_install_centos_6_minimal
self.install_centos('6.5', payloadFile='install_centos_6_payload_minimal.json')
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 213, in install_centos
self.__post_workflow(graph_name, nodes, body)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 112, in __post_workflow
workflows().post_workflows(graph_name, timeout_sec=DEFAULT_TIMEOUT_SEC, nodes=nodes, data=body)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/workflows_tests.py", line 216, in post_workflows
self.run_workflow_tasks(self.__tasks, timeout_sec)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/workflows_tests.py", line 270, in run_workflow_tasks
fail('Failure running {0}'.format(self.__graph_name))
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/asserts.py", line 220, in fail
raise ASSERTION_ERROR(message)
"Failure running Graph.InstallCentOS\n-------------------- >> begin captured logging << --------------------\ntests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set\ntests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fd2162578199a09f5917c\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\ntests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fd2102578199a09f5917a\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\ntests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 593fd2102578199a09f5917b\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\nkombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nkombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nkombu: INFO: Starting AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\nkombu.mixins: INFO: Connected to amqp://guest:@127.0.0.1:9091//\namqp: DEBUG: using channel_id: 1\namqp: DEBUG: Open OK!\nkombu.mixins: INFO: Connected to amqp://guest:@127.0.0.1:9091//\namqp: DEBUG: using channel_id: 1\namqp: DEBUG: Open OK!\nkombu.mixins: INFO: Connected to amqp://guest:**@127.0.0.1:9091//\namqp: DEBUG: using channel_id: 1\namqp: DEBUG: Channel open\namqp: DEBUG: Channel open\namqp: DEBUG: Channel open\nmodules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fd2162578199a09f5917c), stopping..\nkombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nmodules.worker: INFO: stopping subtask for 593fd2162578199a09f5917c\namqp: DEBUG: Closed channel #1\nmodules.worker: ERROR: subtask timeout after 2700 seconds, (id=593fd2102578199a09f5917a), stopping..\nkombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nmodules.worker: INFO: stopping subtask for 593fd2102578199a09f5917a\namqp: DEBUG: Closed channel #1\nmodules.worker: ERROR: subtask timeout after 2701 seconds, (id=593fd2102578199a09f5917b), stopping..\nkombu: INFO: Stopping AMQP worker <unbound Queue graph.finished -> <unbound Exchange on.events(topic)> -> graph.finished.>\nmodules.worker: INFO: stopping subtask for 593fd2102578199a09f5917b\namqp: DEBUG: Closed channel #1\ntests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallCentOS, node 593fd2162578199a09f5917c\ntests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallCentOS, node 593fd2102578199a09f5917a\ntests.api.v2_0.workflows_tests: ERROR: Timeout for Graph.InstallCentOS, node 593fd2102578199a09f5917b\n--------------------- >> end captured logging << ---------------------"

@changev changev force-pushed the bugfix/enclosure-update-data-consistency branch from 9e236cd to 2ef7ffe Compare June 14, 2017 10:56
@changev
Copy link
Member Author

changev commented Jun 15, 2017

test this please

@changev changev force-pushed the bugfix/enclosure-update-data-consistency branch from 2ef7ffe to 4b62720 Compare June 15, 2017 03:26
@JenkinsRHD
Copy link
Contributor

BUILD on-http #230 : FAILURE

BUILD on-http #230 Error Logs ▼Test Name: test12_check_pollers Error Details: All pollers are not active -------------------- >> begin captured stdout << --------------------- restful: Action = get , URL = http://localhost:9090/api/2.0/pollers restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c44/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3f/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c3a/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c46/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c47/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3e/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c45/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c43/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c42/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c41/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c40/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3d/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3c/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c39/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c38/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c37/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c36/data/current
restful: Status code = 200

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 400

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current
restful: Status code = 204

--------------------- >> end captured stdout << ----------------------
-------------------- >> begin captured logging << --------------------
infra.run: DEBUG: relaying set_test((None,)) to all trackers {}
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f26a00a3790> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f26a04fe410> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)
root: INFO: +1.12 - STARTING TEST: [test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)]
infra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test12_check_pollers>),)) to all trackers {}
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f26a00a3790> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f26a04fe410> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)
test.run: INFO_5: **** Waiting for pollers.
test.run: INFO_5: **** Waiting for pollers data.
test.run: ERROR: Poller IDs with error or no data: [
"594219f5d33986870e818c35"
]
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/home/jenkins/workspace/on-http/RackHD/test/deploy/rackhd_stack_init.py", line 263, in test12_check_pollers
self.assertTrue(self.check_for_active_poller_data(MAX_CYCLES), 'All pollers are not active')
File "/usr/lib/python2.7/unittest/case.py", line 424, in assertTrue
raise self.failureException(msg)
'All pollers are not active\n-------------------- >> begin captured stdout << ---------------------\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c44/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3f/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c3a/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c46/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c47/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3e/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c45/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c43/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c42/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c41/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c40/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3d/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3c/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c39/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c38/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c37/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c36/data/current\nrestful: Status code = 200 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 400 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\nrestful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current\nrestful: Status code = 204 \n\n\n--------------------- >> end captured stdout << ----------------------\n-------------------- >> begin captured logging << --------------------\ninfra.run: DEBUG: relaying set_test((None,)) to all trackers {}\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f26a00a3790> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_after_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f26a04fe410> test=test11_add_management_server (test.deploy.rackhd_stack_init.rackhd_stack_init)\nroot: INFO: +1.12 - STARTING TEST: [test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)]\ninfra.run: DEBUG: relaying set_test((Test(<test.deploy.rackhd_stack_init.rackhd_stack_init testMethod=test12_check_pollers>),)) to all trackers {}\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.amqp_source.AMQPStreamMonitor object at 0x7f26a00a3790> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: DEBUG: handle_start_test pluggin progression for <stream_sources.self_test_source.SelfTestStreamMonitor object at 0x7f26a04fe410> test=test12_check_pollers (test.deploy.rackhd_stack_init.rackhd_stack_init)\ntest.run: INFO_5: **** Waiting for pollers.\ntest.run: INFO_5: **** Waiting for pollers data.\ntest.run: ERROR: Poller IDs with error or no data: [\n "594219f5d33986870e818c35"\n]\n--------------------- >> end captured logging << ---------------------'

Test Name: test_install_min_ubuntu
Error Details: status should be 404
-------------------- >> begin captured logging << --------------------
tests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set, use DHCP
tests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set
tests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 59421ca776cccc8a090a2295
amqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']
amqp: DEBUG: Open OK!
--------------------- >> end captured logging << ---------------------
Stack Trace: File "/usr/lib/python2.7/unittest/case.py", line 331, in run
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 1043, in runTest
self._testFunc()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 296, in testng_method_mistake_capture_func
compatability.capture_type_error(s_func)
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/compatability/exceptions_2_6.py", line 27, in capture_type_error
func()
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/case.py", line 350, in func
func(test_case.state.get_state())
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 440, in test_install_min_ubuntu
self.install_ubuntu('trusty', 'install_ubuntu_payload_iso_minimal.json')
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 331, in install_ubuntu
self.__post_workflow(graph_name, nodes, body)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/os_install_tests.py", line 112, in __post_workflow
workflows().post_workflows(graph_name, timeout_sec=DEFAULT_TIMEOUT_SEC, nodes=nodes, data=body)
File "/home/jenkins/workspace/on-http/RackHD/test/tests/api/v2_0/workflows_tests.py", line 210, in post_workflows
assert_equal(404,e.status, message='status should be 404')
File "/home/jenkins/workspace/on-http/RackHD/test/.venv/on-build-config/local/lib/python2.7/site-packages/proboscis/asserts.py", line 55, in assert_equal
raise ASSERTION_ERROR(message)
"status should be 404\n-------------------- >> begin captured logging << --------------------\ntests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set, use DHCP\ntests.api.v2_0.os_install_tests: INFO: NODE_INDEX env is not set\ntests.api.v2_0.workflows_tests: INFO: starting amqp listener for node 59421ca776cccc8a090a2295\namqp: DEBUG: Start from server, version: 0.9, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2013 GoPivotal, Inc.', u'capabilities': {u'exchange_exchange_bindings': True, u'connection.blocked': True, u'authentication_failure_close': True, u'basic.nack': True, u'consumer_priorities': True, u'consumer_cancel_notify': True, u'publisher_confirms': True}, u'platform': u'Erlang/OTP', u'version': u'3.2.4'}, mechanisms: [u'AMQPLAIN', u'PLAIN'], locales: [u'en_US']\namqp: DEBUG: Open OK!\n--------------------- >> end captured logging << ---------------------"

@changev
Copy link
Member Author

changev commented Jun 15, 2017

test this please

@iceiilin iceiilin merged commit 59ad03c into RackHD:master Jun 21, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants