Skip to content

Commit dbc5cf6

Browse files
authored
Merge pull request #5740 from akerouanton/fluentd-async-connect-removal
Drop support for fluentd-async-connect
2 parents b462778 + acbdad9 commit dbc5cf6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

contrib/completion/bash/docker

+1-1
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ __docker_complete_log_driver_options() {
971971
__docker_nospace
972972
return
973973
;;
974-
compress|fluentd-async-connect)
974+
compress|fluentd-async)
975975
COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
976976
return
977977
;;

contrib/completion/zsh/_docker

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ __docker_get_log_options() {
227227
common_options=("max-buffer-size" "mode")
228228
common_options2=("env" "env-regex" "labels")
229229
awslogs_options=($common_options "awslogs-create-group" "awslogs-datetime-format" "awslogs-group" "awslogs-multiline-pattern" "awslogs-region" "awslogs-stream" "tag")
230-
fluentd_options=($common_options $common_options2 "fluentd-address" "fluentd-async-connect" "fluentd-buffer-limit" "fluentd-retry-wait" "fluentd-max-retries" "fluentd-sub-second-precision" "tag")
230+
fluentd_options=($common_options $common_options2 "fluentd-address" "fluentd-async" "fluentd-buffer-limit" "fluentd-retry-wait" "fluentd-max-retries" "fluentd-sub-second-precision" "tag")
231231
gcplogs_options=($common_options $common_options2 "gcp-log-cmd" "gcp-meta-id" "gcp-meta-name" "gcp-meta-zone" "gcp-project")
232232
gelf_options=($common_options $common_options2 "gelf-address" "gelf-compression-level" "gelf-compression-type" "tag")
233233
journald_options=($common_options $common_options2 "tag")

docs/deprecated.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following table provides an overview of the current status of deprecated fea
8080
| Deprecated | [CLI plugins support](#cli-plugins-support) | v20.10 | - |
8181
| Deprecated | [Dockerfile legacy `ENV name value` syntax](#dockerfile-legacy-env-name-value-syntax) | v20.10 | - |
8282
| Removed | [`docker build --stream` flag (experimental)](#docker-build---stream-flag-experimental) | v20.10 | v20.10 |
83-
| Deprecated | [`fluentd-async-connect` log opt](#fluentd-async-connect-log-opt) | v20.10 | - |
83+
| Deprecated | [`fluentd-async-connect` log opt](#fluentd-async-connect-log-opt) | v20.10 | v28.0 |
8484
| Removed | [Configuration options for experimental CLI features](#configuration-options-for-experimental-cli-features) | v19.03 | v23.0 |
8585
| Deprecated | [Pushing and pulling with image manifest v2 schema 1](#pushing-and-pulling-with-image-manifest-v2-schema-1) | v19.03 | v27.0 |
8686
| Removed | [`docker engine` subcommands](#docker-engine-subcommands) | v19.03 | v20.10 |
@@ -718,6 +718,7 @@ files.
718718
### `fluentd-async-connect` log opt
719719

720720
**Deprecated in Release: v20.10**
721+
**Removed in Release: v28.0**
721722

722723
The `--log-opt fluentd-async-connect` option for the fluentd logging driver is
723724
[deprecated in favor of `--log-opt fluentd-async`](https://github.com/moby/moby/pull/39086).

0 commit comments

Comments
 (0)