Skip to content

Commit 6abdc0d

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 929f88a commit 6abdc0d

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
@@ -706,7 +706,7 @@ private void login() {
706706
try {
707707
vResp.close();
708708
} catch (IOException e) {
709-
logger.debug("Error closing /api/api_version response from FlashArray [" + url + "]", e);
709+
logger.debug("Error closing /api_version response from FlashArray [" + url + "]", e);
710710
}
711711
}
712712
}

0 commit comments

Comments
 (0)