You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In tests.py the handling of multiple Location headers is expecting a whitespace (for split) which does not necessarily exists.
These are the corresponding lines from test.py
computeinstance_first = result_textocci.headers[__X_OCCI_LOC].split(', ')[0]
computeinstance_second = result_textocci.headers[__X_OCCI_LOC].split(', ')[1]
See RFC 2068 section 4.2 Message Headers.
The text was updated successfully, but these errors were encountered:
In tests.py the handling of multiple Location headers is expecting a whitespace (for split) which does not necessarily exists.
These are the corresponding lines from test.py
computeinstance_first = result_textocci.headers[__X_OCCI_LOC].split(', ')[0]
computeinstance_second = result_textocci.headers[__X_OCCI_LOC].split(', ')[1]
See RFC 2068 section 4.2 Message Headers.
The text was updated successfully, but these errors were encountered: