File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
integrations/builtin/src/main/kotlin/me/snoty/integration/builtin/http Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ data class HttpNodeSettings(
2929data class HttpNodeInput (
3030 val url : String ,
3131 val method : HttpMethod ,
32- val headers : Map <@FieldDefaultValue(" My-Header" ) String , @FieldDefaultValue(" Header Value" ) String >,
33- val body : String ,
32+ val headers : Map <@FieldDefaultValue(" My-Header" ) String , @FieldDefaultValue(" Header Value" ) String > = emptyMap() ,
33+ val body : String? = null ,
3434 @FieldDescription(" Whether to expect the request to succeed. When set to false, non-200 status codes will cause the Flow to fail." )
3535 @FieldDefaultValue(" false" )
3636 val expectSuccess : Boolean = true , // set to true for backwards compatibility
You can’t perform that action at this time.
0 commit comments