Remove settings filtering for service_account in GCS repository

Related to #18945 and to this 35d3bdab84 (commitcomment-17914150)

In GCS Repository plugin we defined a `service_account` setting which is defined as `Property.Filtered`.
It's not needed as it's only a path to a file.

Closes #18946
This commit is contained in:
David Pilato 2016-06-24 10:58:29 +02:00
parent 148e64d654
commit d73194b9b7

View File

@ -62,7 +62,7 @@ public class GoogleCloudStorageRepository extends BlobStoreRepository {
public static final Setting<String> APPLICATION_NAME =
new Setting<>("application_name", GoogleCloudStoragePlugin.NAME, Function.identity(), Property.NodeScope, Property.Dynamic);
public static final Setting<String> SERVICE_ACCOUNT =
simpleString("service_account", Property.NodeScope, Property.Dynamic, Property.Filtered);
simpleString("service_account", Property.NodeScope, Property.Dynamic);
public static final Setting<TimeValue> HTTP_READ_TIMEOUT =
timeSetting("http.read_timeout", NO_TIMEOUT, Property.NodeScope, Property.Dynamic);
public static final Setting<TimeValue> HTTP_CONNECT_TIMEOUT =