Skip to content

Commit 2938570

Browse files
author
Eugenio Grosso
committed
flasharray: align api_version close-error log text with actual path
The Copilot review pointed out the debug message said /api/api_version but the path passed to the helper is /api_version (the helper itself prepends url + apiVersion). Update the log text to match what the code actually invokes. Signed-off-by: Eugenio Grosso <eugenio.grosso@gmail.com>
1 parent 50b560a commit 2938570

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • plugins/storage/volume/flasharray/src/main/java/org/apache/cloudstack/storage/datastore/adapter/flasharray

plugins/storage/volume/flasharray/src/main/java/org/apache/cloudstack/storage/datastore/adapter/flasharray/FlashArrayAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ private void login() {
705705
try {
706706
vResp.close();
707707
} catch (IOException e) {
708-
logger.debug("Error closing /api/api_version response from FlashArray [" + url + "]", e);
708+
logger.debug("Error closing /api_version response from FlashArray [" + url + "]", e);
709709
}
710710
}
711711
}

0 commit comments

Comments
 (0)