diff options
author | thegeorg <[email protected]> | 2025-05-12 15:51:24 +0300 |
---|---|---|
committer | thegeorg <[email protected]> | 2025-05-12 16:06:27 +0300 |
commit | d629bb70c8773d2c0c43f5088ddbb5a86d8c37ea (patch) | |
tree | 4f678e0d65ad08c800db21c657d3b0f71fafed06 /contrib/restricted/aws/aws-c-http/source/h2_connection.c | |
parent | 92c4b696d7a1c03d54e13aff7a7c20a078d90dd7 (diff) |
Update contrib/restricted/aws libraries to nixpkgs 24.05
commit_hash:f8083acb039e6005e820cdee77b84e0a6b6c6d6d
Diffstat (limited to 'contrib/restricted/aws/aws-c-http/source/h2_connection.c')
-rw-r--r-- | contrib/restricted/aws/aws-c-http/source/h2_connection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/restricted/aws/aws-c-http/source/h2_connection.c b/contrib/restricted/aws/aws-c-http/source/h2_connection.c index 15ea192f8ab..f27c005f38f 100644 --- a/contrib/restricted/aws/aws-c-http/source/h2_connection.c +++ b/contrib/restricted/aws/aws-c-http/source/h2_connection.c @@ -1531,7 +1531,7 @@ static struct aws_h2err s_decoder_on_settings_ack(void *userdata) { } connection->thread_data.settings_self[settings_array[i].id] = settings_array[i].value; } - /* invoke the change settings compeleted user callback */ + /* invoke the change settings completed user callback */ if (pending_settings->on_completed) { pending_settings->on_completed(&connection->base, AWS_ERROR_SUCCESS, pending_settings->user_data); } @@ -2057,6 +2057,7 @@ int aws_h2_stream_activate(struct aws_http_stream *stream) { /* connection keeps activated stream alive until stream completes */ aws_atomic_fetch_add(&stream->refcount, 1); + stream->metrics.stream_id = stream->id; if (!was_cross_thread_work_scheduled) { CONNECTION_LOG(TRACE, connection, "Scheduling cross-thread work task"); |