Skip to content

Commit

Permalink
Release v0.1.95
Browse files Browse the repository at this point in the history
* [BUGFIX] [#XXX] Change "/bin/which" command to simply "which" (no issue filed)
  • Loading branch information
emerkle826 committed Feb 3, 2025
1 parent b1d188f commit fcaa5b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect

## unreleased

## v0.1.95 (2025-02-03)
* [BUGFIX] [#XXX] Change "/bin/which" command to simply "which" (no issue filed)

## v0.1.94 (2025-01-30)
* [BUGFIX] [#596](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/596) Add symlink to /tmp/dse.sock for DSE images

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class UnixCmds {

private static final String PS_CMD = "/bin/ps";
private static final String KILL_CMD = "/bin/kill";
private static final String WHICH_CMD = "/bin/which";
private static final String WHICH_CMD = "which";

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

0 comments on commit fcaa5b8

Please sign in to comment.