Skip to content

Commit fcaa5b8

Browse files
committed
Release v0.1.95
* [BUGFIX] [#XXX] Change "/bin/which" command to simply "which" (no issue filed)
1 parent b1d188f commit fcaa5b8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
1111

1212
## unreleased
1313

14+
## v0.1.95 (2025-02-03)
15+
* [BUGFIX] [#XXX] Change "/bin/which" command to simply "which" (no issue filed)
16+
1417
## v0.1.94 (2025-01-30)
1518
* [BUGFIX] [#596](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/596) Add symlink to /tmp/dse.sock for DSE images
1619

management-api-server/src/main/java/com/datastax/mgmtapi/UnixCmds.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class UnixCmds {
2222

2323
private static final String PS_CMD = "/bin/ps";
2424
private static final String KILL_CMD = "/bin/kill";
25-
private static final String WHICH_CMD = "/bin/which";
25+
private static final String WHICH_CMD = "which";
2626

2727
public static Optional<File> whichCassandra() throws IOException {
2828
return which("cassandra");

0 commit comments

Comments
 (0)