bairamovazat

Results 7 comments of bairamovazat

After adding this changes https://github.com/albfan/bash-ini-parser/pull/41 everything works fine

I agree with the author. Without adding these fixes, using "set -Eeuo pipefail" in a script that uses cfg_parser causes an error. To be precise, the script terminates due to...

UPD. Уже увидел, что плейлисты скачиваются в отдельную папку

I tried testing HTTP/2 through curl. Сurl works fine : ``` curl --http2 -k -sI -w "@curl-format.txt" -s "https://S3_FQDN/PUBLIC_BACKET/FILE_NAME" ``` ``` curl --http2-prior-knowledge -k -sI -w "@curl-format.txt" -s "https://S3_FQDN/PUBLIC_BACKET/FILE_NAME" ```...

I also tested working through HttpClient. And based on wireshark everything works fine via http2. ``` HttpClient httpClient = HttpClient.newBuilder().version(HttpClient.Version.HTTP_2).build(); HttpRequest req = HttpRequest.newBuilder() .uri(new URI(publicFile)) .GET().build(); HttpResponse resp =...

The main difference is curl (or httpClient) and AWS SDK in alnp. "Client Hello" from curl/httpClient: ![image](https://github.com/aws/aws-sdk-java-v2/assets/15175183/df365306-29d6-4847-a38f-5296e9d7f094) "Client Hello" from aws sdk 2 ![image](https://github.com/aws/aws-sdk-java-v2/assets/15175183/3d1058c1-1068-4622-9d7f-b929ba357441) I tried to add manually (in...

Hi! I updated the library version to 0.6.0 and everything worked. Maybe it will help someone else too.