-
Notifications
You must be signed in to change notification settings - Fork 77
keep data consistency when add realtions #658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
keep data consistency when add realtions #658
Conversation
| var enclNodeBefore = _.cloneDeep(enclosureNode); | ||
| enclNodeBefore.relations[0].targets = []; | ||
| var values = { "relations": [{"relationType": "encloses","targets":[]}] }; | ||
| var computeNodeAfter = _.cloneDeep(computeNode); |
There was a problem hiding this comment.
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'}; |
There was a problem hiding this comment.
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]}] | ||
| ) |
There was a problem hiding this comment.
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]}] | ||
| ) |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing semicolon.
| "targets": [] | ||
| } | ||
| ] | ||
| } |
There was a problem hiding this comment.
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"] } |
There was a problem hiding this comment.
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 \ |
There was a problem hiding this comment.
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); | ||
| }) |
There was a problem hiding this comment.
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: [] }] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing semicolon.
4c674ce to
9087f88
Compare
| .to.have.been.calledWith(enclNode.id, targetsToBeRemoved); | ||
| expect(removeListItemsByIdentifier) | ||
| .to.have.been.calledWith(enclNode.id, relationsToBeRemoved); | ||
| }) |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing semicolon.
9087f88 to
f9d7ffc
Compare
|
test this please |
| type: 'enclosure' | ||
| }; | ||
|
|
||
| expect(nodeApiService._removeRelation(enclNode, 'encloses', computeNode)) |
There was a problem hiding this comment.
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)
There was a problem hiding this comment.
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 :)
|
a little hard to grasp all the details here. would prefer an oral explanation when available. |
f9d7ffc to
fa5dd8e
Compare
| computeNode.id, | ||
| {"relations.0.targets": computeNode.relations[0].targets[0] | ||
| }); | ||
| }) |
There was a problem hiding this comment.
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){ |
There was a problem hiding this comment.
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.
245f959 to
b16f2dc
Compare
| var self = this; | ||
|
|
||
| if (!node || !type || !_.has(node, 'relations')) { | ||
| return; |
There was a problem hiding this comment.
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; | |||
There was a problem hiding this comment.
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.
iceiilin
left a comment
There was a problem hiding this 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!
lib/services/nodes-api-service.js
Outdated
| 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'); |
There was a problem hiding this comment.
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.
lib/services/nodes-api-service.js
Outdated
| @@ -84,6 +84,8 @@ function nodeApiServiceFactory( | |||
| * @return {Object} node after removing relation | |||
| */ | |||
| NodeApiService.prototype._removeRelation = function removeRelation(node, type, targets) { | |||
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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.
|
+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. |
b16f2dc to
9e236cd
Compare
| _.pull(enclNodeAfter1.relations, enclNodeAfter1.relations[0]); | ||
|
|
||
| removeListItemsByIdentifier.withArgs(enclNode.id, targetsToBeRemoved) | ||
| .resolves(enclNodeAfter) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing semicolon.
lib/services/nodes-api-service.js
Outdated
| // 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")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long.
lib/services/nodes-api-service.js
Outdated
| 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')); |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing semicolon.
lib/services/nodes-api-service.js
Outdated
| // 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")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long.
lib/services/nodes-api-service.js
Outdated
| 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')); |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing semicolon.
lib/services/nodes-api-service.js
Outdated
| // 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")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long.
lib/services/nodes-api-service.js
Outdated
| 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')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long.
|
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 -------------------- >> begin captured logging << -------------------- Test Name: test_catalogs Test Name: test_workflows_get Stack Trace: Traceback (most recent call last): Test Name: test_tag_create Stack Trace: Traceback (most recent call last): Test Name: get_sku_nodes Stack Trace: Traceback (most recent call last): Test Name: post_skupacks Stack Trace: Traceback (most recent call last): Test Name: setup_ipmi_obm -------------------- >> begin captured logging << -------------------- Test Name: test_install_min_ubuntu Test Name: test03_preload_default_sku --------------------- >> end captured stdout << ---------------------- Test Name: test09_check_discovery restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows restful: Action = get , URL = http://localhost:9090/api/2.0/nodes restful: Action = get , URL = http://localhost:9090/api/2.0/nodes/593fccf9b2851bb3095f0288/workflows --------------------- >> end captured stdout << ---------------------- --------------------- >> end captured logging << --------------------- Test Name: test12_check_pollers restful: Action = get , URL = http://localhost:9090/api/2.0/pollers restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fd/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec109/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec108/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec105/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec102/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10b/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec10a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec107/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec106/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec104/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec103/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec101/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3f7112a170163ec100/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0ff/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fe/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fc/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fb/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/593fce3d7112a170163ec0fa/data/current --------------------- >> end captured stdout << ---------------------- Test Name: test13_load_ucs_manager_config Test Name: test_install_centos_6_minimal |
9e236cd to
2ef7ffe
Compare
|
test this please |
2ef7ffe to
4b62720
Compare
|
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 = 200restful: Action = get , URL = http://localhost:9090/api/2.0/pollers restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c44/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3f/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c3a/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c46/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c47/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3e/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c45/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c43/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fbd33986870e818c42/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c41/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c40/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3d/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219fad33986870e818c3c/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c39/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c38/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c37/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c36/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current restful: Action = get , URL = http://localhost:9090/api/2.0/pollers/594219f5d33986870e818c35/data/current --------------------- >> end captured stdout << ---------------------- Test Name: test_install_min_ubuntu |
|
test this please |
jenkins: depends on RackHD/on-core#280
Modified
to keep data consistency