Disable deprecation log indexing in docker test (#85150)
Deprecation log indexing can make test very fragile and randomly failing during cluster cleanup. This commit disables indexing of deprecation logs for :distribution:docker tests closes #79803
This commit is contained in:
parent
3d3eb31637
commit
4958642404
|
@ -32,6 +32,7 @@ services:
|
|||
- xpack.security.transport.ssl.verification_mode=certificate
|
||||
- xpack.license.self_generated.type=trial
|
||||
- action.destructive_requires_name=false
|
||||
- cluster.deprecation_indexing.enabled=false
|
||||
volumes:
|
||||
- ./testfixtures_shared/repo:/tmp/es-repo
|
||||
- ./build/certs/testnode.pem:/usr/share/elasticsearch/config/testnode.pem
|
||||
|
@ -85,6 +86,7 @@ services:
|
|||
- xpack.security.transport.ssl.verification_mode=certificate
|
||||
- xpack.license.self_generated.type=trial
|
||||
- action.destructive_requires_name=false
|
||||
- cluster.deprecation_indexing.enabled=false
|
||||
volumes:
|
||||
- ./testfixtures_shared/repo:/tmp/es-repo
|
||||
- ./build/certs/testnode.pem:/usr/share/elasticsearch/config/testnode.pem
|
||||
|
|
Loading…
Reference in New Issue