provision.pl is not handling properly the 302 and 303 HTTP Responses.
Description
After making a change on a requisition using provision.pl, the script is returning the following:
$ ./provision.pl asset set Local L1002 address1 "Planet Earth" 303 See Other at ./provision.pl line 679 main::post('Local/nodes/L1002/assets', 'XML::Twig::Elt=HASH(0x2414bc0)') called at ./provision.pl line 493 main::cmd_asset('set', 'Local', 'L1002', 'address1', 'Planet Earth') called at ./provision.pl line 110
But, the change was successfully applied:
$ ./provision.pl list Local
Local (last updated: 2013-08-27T08:36:32.267-04:00)
nodes:
centos-opennms (foreign ID: L1002)
building: Local
assets:
address1=Planet Earth
interfaces:
192.168.32.102 (eth0)
SNMP Primary: P
Status: 1
It is expected that provision.pl does not return anything if the command was successfully executed.
Acceptance / Success Criteria
None
Lucidchart Diagrams
Activity
Show:
Alejandro Galue August 30, 2013 at 9:30 AM
Fixed on revision 3eaa78954ec9fda6b2768fca0f6937f6af5a5f12 for 1.12
Matt Brozowski August 30, 2013 at 8:26 AM
The ReST api is asynchronous on writes to ensure that we get sufficient write throughput. On a read (like GET) the code flushes all pending writes before it returns. If we do a read after each write you destroy the thoughput advantages of doing writes asynchronously.
Please make sure the changes you made take this into account
Alejandro Galue August 27, 2013 at 11:08 AM
Fixed on revision 3b7652d306db0a948d3922c21d3c97751c145295 for 1.12
After making a change on a requisition using provision.pl, the script is returning the following:
$ ./provision.pl asset set Local L1002 address1 "Planet Earth"
303 See Other at ./provision.pl line 679
main::post('Local/nodes/L1002/assets', 'XML::Twig::Elt=HASH(0x2414bc0)') called at ./provision.pl line 493
main::cmd_asset('set', 'Local', 'L1002', 'address1', 'Planet Earth') called at ./provision.pl line 110
But, the change was successfully applied:
$ ./provision.pl list Local
Local (last updated: 2013-08-27T08:36:32.267-04:00)
nodes:
centos-opennms (foreign ID: L1002)
building: Local
assets:
address1=Planet Earth
interfaces:
192.168.32.102 (eth0)
SNMP Primary: P
Status: 1
It is expected that provision.pl does not return anything if the command was successfully executed.