Skip to content

Commit

Permalink
Remove unused ssl_context documentation (#10152)
Browse files Browse the repository at this point in the history
* Remove unused ssl_context documentation

* Sync models
  • Loading branch information
coignetp authored Sep 17, 2021
1 parent 349f975 commit 256f652
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 18 deletions.
7 changes: 0 additions & 7 deletions kafka_consumer/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,6 @@ files:
type: string
example: localhost
display_default: null
- name: ssl_context
description: |
Pre-configured SSLContext for wrapping socket connections.
If provided, all other ssl_* configurations are ignored.
value:
type: string
example: <SSL_CONTEXT>
- name: ssl_check_hostname
description: |
Flag to configure whether SSL handshake should verify that the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ def instance_ssl_check_hostname(field, value):
return True


def instance_ssl_context(field, value):
return get_default_field_value(field, value)


def instance_ssl_crlfile(field, value):
return get_default_field_value(field, value)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class Config:
ssl_cafile: Optional[str]
ssl_certfile: Optional[str]
ssl_check_hostname: Optional[bool]
ssl_context: Optional[str]
ssl_crlfile: Optional[str]
ssl_keyfile: Optional[str]
ssl_password: Optional[str]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,6 @@ instances:
#
# sasl_kerberos_domain_name: localhost

## @param ssl_context - string - optional
## Pre-configured SSLContext for wrapping socket connections.
## If provided, all other ssl_* configurations are ignored.
#
# ssl_context: <SSL_CONTEXT>

## @param ssl_check_hostname - boolean - optional - default: true
## Flag to configure whether SSL handshake should verify that the
## certificate matches the broker’s hostname.
Expand Down

0 comments on commit 256f652

Please sign in to comment.