File tree 1 file changed +15
-1
lines changed
src/main/java/io/appium/java_client/service/local/flags
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,21 @@ public enum GeneralServerFlag implements ServerArgument {
119
119
/**
120
120
* Enables NodeJS memory dumps collection feature.
121
121
*/
122
- ENABLE_HEAP_DUMP ("--enable-heapdump" );
122
+ ENABLE_HEAP_DUMP ("--enable-heapdump" ),
123
+ /**
124
+ * Allow a list of features which are considered insecure and must be turned on
125
+ * explicitly by system administrators.
126
+ * Default: []
127
+ * Sample: --allow-insecure=foo,bar
128
+ */
129
+ ALLOW_INSECURE ("--allow-insecure" ),
130
+ /**
131
+ * Specify a list of features which will never be allowed to run, even if --relaxed-security
132
+ * is turned on, and even if feature names are listed with --allow-insecure.
133
+ * Default: []
134
+ * Sample: --deny-insecure=foo,bar
135
+ */
136
+ DENY_INSECURE ("--deny-insecure" );
123
137
124
138
private final String arg ;
125
139
You can’t perform that action at this time.
0 commit comments