@@ -29,25 +29,25 @@ static const struct aws_byte_cursor s_json_content_type_value =
29
29
30
30
static const struct aws_byte_cursor s_invalid_stream_id_error =
31
31
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL ("{ \"message\": \"non-zero stream-id field is only allowed for messages of "
32
- "type APPLICATION_MESSAGE. The stream id max value is INT32_MAX.\"; }" );
32
+ "type APPLICATION_MESSAGE. The stream id max value is INT32_MAX.\" }" );
33
33
34
34
static const struct aws_byte_cursor s_invalid_client_stream_id_error =
35
35
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL ("{ \"message\": \"stream-id values must be monotonically incrementing. A "
36
- "stream-id arrived that was lower than the last seen stream-id.\"; }" );
36
+ "stream-id arrived that was lower than the last seen stream-id.\" }" );
37
37
38
38
static const struct aws_byte_cursor s_invalid_new_client_stream_id_error =
39
39
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL ("{ \"message\": \"stream-id values must be monotonically incrementing. A new "
40
- "stream-id arrived that was incremented by more than 1.\"; }" );
40
+ "stream-id arrived that was incremented by more than 1.\" }" );
41
41
42
- static const struct aws_byte_cursor s_invalid_message_type_error = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL (
43
- "{ \"message\": \"an invalid value for message-type field was received.\"; }" );
42
+ static const struct aws_byte_cursor s_invalid_message_type_error =
43
+ AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL ( "{ \"message\": \"an invalid value for message-type field was received.\" }" );
44
44
45
45
static const struct aws_byte_cursor s_invalid_message_error = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL (
46
46
"{ \"message\": \"A message was received with missing required fields. Check that your client is sending at least, "
47
- ":message-type, :message-flags, and :stream-id\"; }" );
47
+ ":message-type, :message-flags, and :stream-id\" }" );
48
48
49
49
static const struct aws_byte_cursor s_internal_error = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL (
50
- "{ \"message\": \"An error occurred on the peer endpoint. This is not likely caused by your endpoint.\"; }" );
50
+ "{ \"message\": \"An error occurred on the peer endpoint. This is not likely caused by your endpoint.\" }" );
51
51
52
52
static const struct aws_byte_cursor s_connect_not_completed_error = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL (
53
53
"{ \"message\": \"A CONNECT message must be received, and the CONNECT_ACK must be sent in response, before any "
0 commit comments