Skip to content

Commit b4d20fe

Browse files
jszwedkomichaelshobbs
authored andcommitted
Fix type of OctetCountedTCPFraming to be TCPFraming
1 parent 5af7c79 commit b4d20fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adapters/syslog/syslog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const (
3636
// TraditionalTCPFraming is the traditional LF framing of syslog messages on the wire
3737
TraditionalTCPFraming TCPFraming = "traditional"
3838
// OctetCountedTCPFraming prepends the size of each message before the message. https://tools.ietf.org/html/rfc6587#section-3.4.1
39-
OctetCountedTCPFraming = "octet-counted"
39+
OctetCountedTCPFraming TCPFraming = "octet-counted"
4040
)
4141

4242
func init() {

0 commit comments

Comments
 (0)