Skip to content

Commit

Permalink
chore: remove ssl debug logs from env (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoppenheimer authored Oct 30, 2023
1 parent 1426c8d commit 2a3dc70
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ def kafka_opts(self) -> str:
"""
opts = [
f"-Djava.security.auth.login.config={self.zk_jaas_filepath}",
"-Djavax.net.debug=ssl:handshake:verbose:session:keymanager:trustmanager",
]

return f"KAFKA_OPTS='{' '.join(opts)}'"
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ def test_kafka_opts(harness):
args = harness.charm.kafka_config.kafka_opts
assert "-Djava.security.auth.login.config" in args
assert "KAFKA_OPTS" in args
assert "-Djavax.net.debug=ssl" in args


@pytest.mark.parametrize(
Expand Down

0 comments on commit 2a3dc70

Please sign in to comment.