def releaseConfiguration(connection, sessionUrl): ''' This method is used to release the currently loaded test. After starting the 'Release Config' action, wait for the action to complete. Args: - connection is the connection object that manages the HTTP data transfers between the client and the REST API - sessionUrl is the address of the session that should run the test. ''' releaseConfigUrl = "%s/ixload/test/operation/abortAndReleaseConfigWaitFinish" %(sessionUrl) data = {} performGenericOperation(connection, releaseConfigUrl, data)