Skip to content

Commit 9ab7775

Browse files
committed
Remove the "--debug" flag in container start up (#332)
# Description The `--debug` flag in the HDFS container command now depends on logging settings. However, these message are not collected by vector currently. @siegfriedweber any opinions? fixes #330 Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
1 parent e10bcfb commit 9ab7775

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,14 @@ All notable changes to this project will be documented in this file.
1414
- `operator-rs` `0.36.0` -> `0.37.0` ([#326]).
1515
- [Breaking] Moved top level config option to `clusterConfig` ([#326]).
1616

17+
### Removed
18+
19+
- Removed the `--debug` flag for HDFS container start up ([#332]).
20+
1721
[#319]: https://github.com/stackabletech/hdfs-operator/pull/319
1822
[#326]: https://github.com/stackabletech/hdfs-operator/pull/326
1923
[#328]: https://github.com/stackabletech/hdfs-operator/pull/328
24+
[#332]: https://github.com/stackabletech/hdfs-operator/pull/332
2025

2126
## [23.1.0] - 2023-01-23
2227

rust/operator/src/container.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl ContainerConfig {
364364
));
365365

366366
args.push(format!(
367-
"{hadoop_home}/bin/hdfs --debug {role}",
367+
"{hadoop_home}/bin/hdfs {role}",
368368
hadoop_home = Self::HADOOP_HOME,
369369
));
370370
}

0 commit comments

Comments
 (0)