Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zypper not forwarding curl error messages. #502

Open
RokeJulianLockhart opened this issue Sep 2, 2023 · 10 comments
Open

zypper not forwarding curl error messages. #502

RokeJulianLockhart opened this issue Sep 2, 2023 · 10 comments

Comments

@RokeJulianLockhart
Copy link

RokeJulianLockhart commented Sep 2, 2023

Retrieving: discover-backend-packagekit-5.27.7git.20230901T030639~a24a650-ku.123.1.x86_64.rpm ......................................................................................................................................................................................................................[error]
Download (curl) error for 'https://download.opensuse.org/repositories/KDE:/Unstable:/Frameworks/openSUSE_Factory/x86_64/discover-backend-packagekit-5.27.7git.20230901T030639~a24a650-ku.123.1.x86_64.rpm':
Error code: Curl error 55
Error message: 

If this is an issue with curl instead, I apologize. I'm uncertain how to diagnose this.

@mlandres
Copy link
Member

mlandres commented Sep 3, 2023

@RokeJulianLockhart we'd need to check the /var/log/zypper.log. A grep 'curl error:' /var/log/zypper.log might already reveal whether the curl error number is followed by an error text. In case of doubt, please provide the log and we'll have a look at it.
(CURLE_SEND_ERROR, /* 55 - failed sending network data */) is what the curl includefiles say.

@RokeJulianLockhart
Copy link
Author

RokeJulianLockhart commented Sep 3, 2023

@mlandres,

A grep 'curl error:' /var/log/zypper.log might already reveal whether the curl error number is followed by an error text.

Get-Content -LiteralPath '/var/log/zypper.log' | Select-String 'curl error:'
PS /root> Get-Content -LiteralPath '/var/log/zypper.log' | Select-String 'curl error:'

2023-09-01 02:24:02 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:04 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:05 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:08 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:08 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:08 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:17 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:20 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:24 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 02:24:25 <3> RQN6C6(18038) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 22:07:15 <3> RQN6C6(28197) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 22:07:30 <3> RQN6C6(28197) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-01 22:09:20 <3> RQN6C6(28197) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 55: , temp file size 0 bytes.
2023-09-02 01:55:52 <3> RQN6C6(6486) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-02 01:59:07 <3> RQN6C6(6612) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 55: , temp file size 0 bytes.

PS /root>

In case of doubt, please provide the log and we'll have a look at it.

microsoft/vscode#192082 (comment)

image

#502 (comment)

https://gitlab.com/-/snippets/2595202?expanded=true

@mlandres
Copy link
Member

mlandres commented Sep 4, 2023

Looks like curl actually does not provide a detailed error message for error 55 here. The temp file size... is added by zypp.

@RokeJulianLockhart

This comment was marked as resolved.

@RokeJulianLockhart

This comment was marked as outdated.

@RokeJulianLockhart

This comment was marked as duplicate.

@RokeJulianLockhart
Copy link
Author

@mlandres
Copy link
Member

mlandres commented Sep 8, 2023

@RokeJulianLockhart What libzypp displays is "curl error: " << ret << ": " << _curlError ...,
where ret is the return value of a call to curl_easy_perform
and the empty _curlError was set as errorbuffer curl_easy_setopt( _curl, CURLOPT_ERRORBUFFER, _curlError );.

If the issue is reproducible or at least happens frequently, you could call zypper as ZYPP_MEDIA_CURL_DEBUG=2 zypper. The environment variable causes to some more curl debug messages to be written to the zypper.log.

grep -5 zypp-curl zypper.log should help to find the block for error 55. The log might shed some light on what actually happened. It may help to be able to reproduce it, which is the 1st step to further investigations.

@RokeJulianLockhart
Copy link
Author

RokeJulianLockhart commented Sep 8, 2023

#502 (comment)

@mlandres,

sudo grep -5 zypp-curl /var/log/zypper.log
rokejulianlockhart@RQN6C6:~> sudo grep -5 zypp-curl /var/log/zypper.log
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media] MediaNetworkCommonHandler.cc(findGeoIPRedirect):42 Found GeoIP file for host: download.opensuse.org
2023-09-08 11:37:41 <5> RQN6C6(4977) [zypp-core] Exception.cc(log):186 UrlBase.cc(setHost):1088 THROW:    Url scheme requires a host component
2023-09-08 11:37:41 <5> RQN6C6(4977) [zypp-core] Exception.cc(log):186 MediaNetworkCommonHandler.cc(findGeoIPRedirect):62 CAUGHT:   Url scheme requires a host component
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media] MediaNetworkCommonHandler.cc(findGeoIPRedirect):63 No valid GeoIP rewrite target found for https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media] MediaCurl.cc(MediaCurl):344 MediaCurl::MediaCurl(https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/, )
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl] curlhelper.cc(operator()):68 global_init libcurl: 8.2.1
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media] MediaMultiCurl.cc(MediaMultiCurl):1182 MediaMultiCurl::MediaMultiCurl(https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/, )
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media] MediaHandlerFactory.cc(createHandler):132 Opened: https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/ not attached; localRoot ""
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(open):319 Opened new media access using id 1 to https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::fetcher++] MediaSetAccess.cc(provide):278 Going to try to provide optional file /repodata/repomd.xml from media number 1
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(attach):437 attach(id=1)
--
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media] MediaHandler.cc(createAttachPoint):342 Created default attach point /var/tmp/AP_0xCIXdNX
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp] ProductFileReader.cc(parse):219 +++/etc/products.d/baseproduct[g___]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp] Reader.cc(Reader):113 Start Parsing /etc/products.d/baseproduct[g___]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp] Reader.cc(~Reader):137 Done Parsing /etc/products.d/baseproduct[_eF_]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp] ProductFileReader.cc(parse):245 ---0 - /etc/products.d/baseproduct[_eF_]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl] proxyinfolibproxy.cc(getProxyFactory):66 Build Libproxy Factory from /etc/sysconfig/proxy
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(setupEasy):606 Proxy: not explicitly set
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(setupEasy):607 Proxy: libcurl may look into the environment
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(chmod):1098 assert_file_mode 00600 /var/lib/YaST2/cookieschmod /var/lib/YaST2/cookies 00600
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media] MediaHandler.cc(attach):653 Attached: https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/ attached; localRoot "/var/tmp/AP_0xCIXdNX"
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(checkDesired):153 checkDesired(1): desired (report by zypp::media::NoVerifier)
--
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xCIXdNX/repodata 00755
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xCIXdNX/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xCIXdNX/repodata/repomd.xml.new.zypp.juxl8O
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * processing: https://download.opensuse.org/repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *   Trying 195.135.221.134:443...
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * ALPN: offers h2,http/1.1
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  CAfile: none
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  CApath: /etc/ssl/certs
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * ALPN: server accepted h2
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * Server certificate:
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  subject: CN=opensuse.org
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 *  SSL certificate verify ok.
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * using HTTP/2
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [:method: GET]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [:scheme: https]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [:path: /repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * Using Stream ID: 1
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 > GET /repositories/KDE:/Unstable:/Applications/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml HTTP/2
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 > Host: download.opensuse.org
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 > 
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * old SSL session ID is stale, removing
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < HTTP/2 200 
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < last-modified: Fri, 08 Sep 2023 05:39:28 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < etag: "6d2-604d2667297e0"
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < accept-ranges: bytes
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < content-length: 1746
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < cache-control: must-revalidate
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < expires: Fri, 08 Sep 2023 10:40:01 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < vary: Accept-Encoding
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < x-content-type-options: nosniff
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < content-type: text/xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < date: Fri, 08 Sep 2023 10:37:41 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < server: Apache
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 < 
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9247358d0 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xCIXdNX/repodata/repomd.xml.new.zypp.juxl8O): 0
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xCIXdNX/repodata/repomd.xml.new.zypp.juxl8O -> /var/tmp/AP_0xCIXdNX/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xCIXdNX/repodata/repomd.xml{- 0644 0/0 size 1746}
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0x0YFqQo/repodata 00755
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0x0YFqQo/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0x0YFqQo/repodata/repomd.xml.new.zypp.30RMPY
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/KDE:/Unstable:/Extra/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.opensuse.org/repositories/KDE:/Unstable:/Extra/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:443...
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=opensuse.org
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /repositories/KDE:/Unstable:/Extra/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /repositories/KDE:/Unstable:/Extra/KDE_Unstable_Frameworks_openSUSE_Factory/repodata/repomd.xml HTTP/2
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Thu, 07 Sep 2023 18:42:41 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "6c9-604c939990634"
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 1737
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: must-revalidate
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:01 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < vary: Accept-Encoding
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-content-type-options: nosniff
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:41 GMT
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0x0YFqQo/repodata/repomd.xml.new.zypp.30RMPY): 0
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0x0YFqQo/repodata/repomd.xml.new.zypp.30RMPY -> /var/tmp/AP_0x0YFqQo/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0x0YFqQo/repodata/repomd.xml{- 0644 0/0 size 1737}
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xVfU8QS/repodata 00755
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xVfU8QS/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xVfU8QS/repodata/repomd.xml.new.zypp.pxWgs6
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/KDE:/Unstable:/Frameworks/openSUSE_Factory/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.opensuse.org/repositories/KDE:/Unstable:/Frameworks/openSUSE_Factory/repodata/repomd.xml
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:443...
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:41 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /repositories/KDE:/Unstable:/Frameworks/openSUSE_Factory/repodata/repomd.xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /repositories/KDE:/Unstable:/Frameworks/openSUSE_Factory/repodata/repomd.xml HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Fri, 08 Sep 2023 05:33:43 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "6b8-604d251de61aa"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 1720
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: must-revalidate
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:02 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < vary: Accept-Encoding
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-content-type-options: nosniff
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:42 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xVfU8QS/repodata/repomd.xml.new.zypp.pxWgs6): 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xVfU8QS/repodata/repomd.xml.new.zypp.pxWgs6 -> /var/tmp/AP_0xVfU8QS/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xVfU8QS/repodata/repomd.xml{- 0644 0/0 size 1720}
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xvP0vrp/repodata 00755
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xvP0vrp/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xvP0vrp/repodata/repomd.xml.new.zypp.8d1TU1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/KDE:/Unstable:/Qt/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.opensuse.org/repositories/KDE:/Unstable:/Qt/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:443...
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /repositories/KDE:/Unstable:/Qt/openSUSE_Tumbleweed/repodata/repomd.xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /repositories/KDE:/Unstable:/Qt/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Fri, 08 Sep 2023 05:36:21 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "6b4-604d25b488261"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 1716
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: must-revalidate
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:02 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < vary: Accept-Encoding
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-content-type-options: nosniff
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:42 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xvP0vrp/repodata/repomd.xml.new.zypp.8d1TU1): 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xvP0vrp/repodata/repomd.xml.new.zypp.8d1TU1 -> /var/tmp/AP_0xvP0vrp/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xvP0vrp/repodata/repomd.xml{- 0644 0/0 size 1716}
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xKKVz2R/repodata 00755
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xKKVz2R/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xKKVz2R/repodata/repomd.xml.new.zypp.g9dmCI
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.copr.fedorainfracloud.org/results/dusansimic/caprine/opensuse-tumbleweed-x86_64/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.copr.fedorainfracloud.org/results/dusansimic/caprine/opensuse-tumbleweed-x86_64/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 143.204.68.52:443...
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.copr.fedorainfracloud.org (143.204.68.52) port 443
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=download.copr.fedorainfracloud.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Feb 28 00:00:00 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Nov 28 23:59:59 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.copr.fedorainfracloud.org" matched cert's "download.copr.fedorainfracloud.org"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M01
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.copr.fedorainfracloud.org]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /results/dusansimic/caprine/opensuse-tumbleweed-x86_64/repodata/repomd.xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /results/dusansimic/caprine/opensuse-tumbleweed-x86_64/repodata/repomd.xml HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.copr.fedorainfracloud.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 1858
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Wed, 06 Sep 2023 07:45:10 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: lighttpd/1.4.71
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: no-cache
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:42 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "3784948414"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-cache: RefreshHit from cloudfront
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < via: 1.1 b214b93d742fbebaa1ebb3a48c41e89a.cloudfront.net (CloudFront)
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-amz-cf-pop: LHR61-P1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-amz-cf-id: FKjM2DfvKgS-HQVNPcnQD6w8US2QErtEeqNiGmg4TbZlu9bpWWYSKA==
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.copr.fedorainfracloud.org left intact
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xKKVz2R/repodata/repomd.xml.new.zypp.g9dmCI): 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xKKVz2R/repodata/repomd.xml.new.zypp.g9dmCI -> /var/tmp/AP_0xKKVz2R/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xKKVz2R/repodata/repomd.xml{- 0644 0/0 size 1858}
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xs5GgM8/repodata 00755
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xs5GgM8/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xs5GgM8/repodata/repomd.xml.new.zypp.G2qd2t
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/home:/dmafanasyev/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.opensuse.org/repositories/home:/dmafanasyev/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:443...
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /repositories/home:/dmafanasyev/openSUSE_Tumbleweed/repodata/repomd.xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /repositories/home:/dmafanasyev/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/2
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Wed, 06 Sep 2023 14:46:12 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "b7a-604b1ce0a31cb"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 2938
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: must-revalidate
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:02 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < vary: Accept-Encoding
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-content-type-options: nosniff
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:42 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xs5GgM8/repodata/repomd.xml.new.zypp.G2qd2t): 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xs5GgM8/repodata/repomd.xml.new.zypp.G2qd2t -> /var/tmp/AP_0xs5GgM8/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xs5GgM8/repodata/repomd.xml{- 0644 0/0 size 2938}
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0x3YesyV/repodata 00755
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0x3YesyV/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0x3YesyV/repodata/repomd.xml.new.zypp.uHgzVa
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 * processing: http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 *   Trying 195.135.221.134:80...
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 * Connected to download.opensuse.org (195.135.221.134) port 80
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 > GET /tumbleweed/repo/non-oss/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 > Host: download.opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 > 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < HTTP/1.1 200 OK
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Date: Fri, 08 Sep 2023 10:37:42 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Server: Apache
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Last-Modified: Wed, 06 Sep 2023 23:12:50 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < ETag: "2713-604b8e1db4080"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Accept-Ranges: bytes
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Content-Length: 10003
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Cache-Control: must-revalidate
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Expires: Fri, 08 Sep 2023 10:40:02 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Vary: Accept-Encoding
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < X-Content-Type-Options: nosniff
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Content-Security-Policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < Content-Type: text/xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 < 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d92497ee50 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0x3YesyV/repodata/repomd.xml.new.zypp.uHgzVa): 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0x3YesyV/repodata/repomd.xml.new.zypp.uHgzVa -> /var/tmp/AP_0x3YesyV/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0x3YesyV/repodata/repomd.xml{- 0644 0/0 size 10003}
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xRji6qB/repodata 00755
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xRji6qB/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xRji6qB/repodata/repomd.xml.new.zypp.h92rHo
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://download.opensuse.org/debug/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: http://download.opensuse.org/debug/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:80...
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 80
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /debug/tumbleweed/repo/oss/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/1.1 200 OK
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Date: Fri, 08 Sep 2023 10:37:42 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Server: Apache
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Last-Modified: Thu, 07 Sep 2023 07:26:29 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < ETag: "2472-604bfc7495340"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Accept-Ranges: bytes
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Length: 9330
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Cache-Control: must-revalidate
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Expires: Fri, 08 Sep 2023 10:40:02 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Vary: Accept-Encoding
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < X-Content-Type-Options: nosniff
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Security-Policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Type: text/xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xRji6qB/repodata/repomd.xml.new.zypp.h92rHo): 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xRji6qB/repodata/repomd.xml.new.zypp.h92rHo -> /var/tmp/AP_0xRji6qB/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xRji6qB/repodata/repomd.xml{- 0644 0/0 size 9330}
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xA8Peid/repodata 00755
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xA8Peid/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xA8Peid/repodata/repomd.xml.new.zypp.4RXzJ9
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://download.opensuse.org/source/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * processing: http://download.opensuse.org/source/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *   Trying 195.135.221.134:80...
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connected to download.opensuse.org (195.135.221.134) port 80
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > GET /source/tumbleweed/repo/oss/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Host: download.opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < HTTP/1.1 200 OK
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Date: Fri, 08 Sep 2023 10:37:42 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Server: Apache
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Last-Modified: Thu, 07 Sep 2023 07:28:51 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < ETag: "24b7-604bfcfc012c0"
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Accept-Ranges: bytes
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Length: 9399
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Cache-Control: must-revalidate
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Expires: Fri, 08 Sep 2023 10:40:02 GMT
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Vary: Accept-Encoding
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < X-Content-Type-Options: nosniff
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Security-Policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Type: text/xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < 
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xA8Peid/repodata/repomd.xml.new.zypp.4RXzJ9): 0
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xA8Peid/repodata/repomd.xml.new.zypp.4RXzJ9 -> /var/tmp/AP_0xA8Peid/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xA8Peid/repodata/repomd.xml{- 0644 0/0 size 9399}
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xYUUtig/repodata 00755
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xYUUtig/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xYUUtig/repodata/repomd.xml.new.zypp.IiV0Zs
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:80...
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 80
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /tumbleweed/repo/oss/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:42 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/1.1 200 OK
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Date: Fri, 08 Sep 2023 10:37:43 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Server: Apache
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Last-Modified: Thu, 07 Sep 2023 07:22:41 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < ETag: "29e5-604bfb9b25240"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Accept-Ranges: bytes
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Length: 10725
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Cache-Control: must-revalidate
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Expires: Fri, 08 Sep 2023 10:40:03 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Vary: Accept-Encoding
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < X-Content-Type-Options: nosniff
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Security-Policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Type: text/xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xYUUtig/repodata/repomd.xml.new.zypp.IiV0Zs): 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xYUUtig/repodata/repomd.xml.new.zypp.IiV0Zs -> /var/tmp/AP_0xYUUtig/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xYUUtig/repodata/repomd.xml{- 0644 0/0 size 10725}
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0x0ENh7o/repodata 00755
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0x0ENh7o/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0x0ENh7o/repodata/repomd.xml.new.zypp.wOi4Ib
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://download.opensuse.org/update/tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * processing: http://download.opensuse.org/update/tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *   Trying 195.135.221.134:80...
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connected to download.opensuse.org (195.135.221.134) port 80
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > GET /update/tumbleweed/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Host: download.opensuse.org
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < HTTP/1.1 200 OK
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Date: Fri, 08 Sep 2023 10:37:43 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Server: Apache
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Last-Modified: Mon, 06 Mar 2023 08:44:10 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < ETag: "b6e-5f6374c7b85ef"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Accept-Ranges: bytes
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Length: 2926
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Cache-Control: must-revalidate
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Expires: Fri, 08 Sep 2023 10:40:03 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Vary: Accept-Encoding
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < X-Content-Type-Options: nosniff
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Security-Policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Type: text/xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0x0ENh7o/repodata/repomd.xml.new.zypp.wOi4Ib): 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0x0ENh7o/repodata/repomd.xml.new.zypp.wOi4Ib -> /var/tmp/AP_0x0ENh7o/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0x0ENh7o/repodata/repomd.xml{- 0644 0/0 size 2926}
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xFDUrqk/repodata 00755
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xFDUrqk/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xFDUrqk/repodata/repomd.xml.new.zypp.uMEonh
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * processing: https://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *   Trying 142.250.178.14:443...
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connected to dl.google.com (142.250.178.14) port 443
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * ALPN: offers h2,http/1.1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  CAfile: none
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  CApath: /etc/ssl/certs
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * ALPN: server accepted h2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Server certificate:
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  subject: CN=*.google.com
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  start date: Aug 14 08:16:28 2023 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  expire date: Nov  6 08:16:27 2023 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  subjectAltName: host "dl.google.com" matched cert's "*.google.com"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  issuer: C=US; O=Google Trust Services LLC; CN=GTS CA 1C3
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *  SSL certificate verify ok.
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * using HTTP/2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * h2 [:method: GET]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * h2 [:scheme: https]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * h2 [:authority: dl.google.com]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * h2 [:path: /linux/chrome/rpm/stable/x86_64/repodata/repomd.xml]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Using Stream ID: 1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > GET /linux/chrome/rpm/stable/x86_64/repodata/repomd.xml HTTP/2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Host: dl.google.com
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * old SSL session ID is stale, removing
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < HTTP/2 200 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < accept-ranges: bytes
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < content-disposition: attachment
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < content-length: 1356
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < content-security-policy: default-src 'none'
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < server: downloads
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < x-content-type-options: nosniff
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < x-frame-options: SAMEORIGIN
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < x-xss-protection: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < date: Fri, 08 Sep 2023 10:37:43 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < cache-control: public,max-age=0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < last-modified: Thu, 07 Sep 2023 17:09:14 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < etag: "1a58142"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < content-type: application/octet-stream
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < age: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connection #0 to host dl.google.com left intact
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xFDUrqk/repodata/repomd.xml.new.zypp.uMEonh): 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xFDUrqk/repodata/repomd.xml.new.zypp.uMEonh -> /var/tmp/AP_0xFDUrqk/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xFDUrqk/repodata/repomd.xml{- 0644 0/0 size 1356}
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xj6Khfv/repodata 00755
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xj6Khfv/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xj6Khfv/repodata/repomd.xml.new.zypp.kLutjw
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://ftp.gwdg.de/pub/linux/packman/suse/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: http://ftp.gwdg.de/pub/linux/packman/suse/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 134.76.12.6:80...
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to ftp.gwdg.de (134.76.12.6) port 80
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /pub/linux/packman/suse/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: ftp.gwdg.de
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/1.1 200 OK
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Server: nginx
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Date: Fri, 08 Sep 2023 10:37:43 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Type: text/xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Length: 1378
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Last-Modified: Fri, 08 Sep 2023 02:26:44 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Connection: keep-alive
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < ETag: "64fa8664-562"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Strict-Transport-Security: max-age=63072000; includeSubDomains; preload
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < X-Frame-Options: SAMEORIGIN
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < X-Content-Type-Options: nosniff
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Accept-Ranges: bytes
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host ftp.gwdg.de left intact
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xj6Khfv/repodata/repomd.xml.new.zypp.kLutjw): 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xj6Khfv/repodata/repomd.xml.new.zypp.kLutjw -> /var/tmp/AP_0xj6Khfv/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xj6Khfv/repodata/repomd.xml{- 0644 0/0 size 1378}
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xKrK0xh/repodata 00755
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xKrK0xh/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xKrK0xh/repodata/repomd.xml.new.zypp.6uRUWR
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://opensuse-guide.org/repo/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * processing: http://opensuse-guide.org/repo/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 *   Trying 46.30.213.26:80...
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connected to opensuse-guide.org (46.30.213.26) port 80
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > GET /repo/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Host: opensuse-guide.org
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 > 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < HTTP/1.1 200 OK
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Date: Fri, 08 Sep 2023 10:37:43 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Server: Apache
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Last-Modified: Fri, 27 May 2022 10:53:28 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < ETag: "5e0-5dffc1dc9f8ee"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Accept-Ranges: bytes
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Length: 1504
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Cache-Control: no-cache
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Content-Type: application/xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < X-Varnish: 19807164679
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Age: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Via: 1.1 webcache1 (Varnish/trunk)
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < Connection: keep-alive
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 < 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9246c65e0 * Connection #0 to host opensuse-guide.org left intact
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xKrK0xh/repodata/repomd.xml.new.zypp.6uRUWR): 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xKrK0xh/repodata/repomd.xml.new.zypp.6uRUWR -> /var/tmp/AP_0xKrK0xh/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xKrK0xh/repodata/repomd.xml{- 0644 0/0 size 1504}
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xOpPxDK/repodata 00755
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xOpPxDK/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xOpPxDK/repodata/repomd.xml.new.zypp.0nJvNE
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/home:/ecsos/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.opensuse.org/repositories/home:/ecsos/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:443...
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=opensuse.org
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /repositories/home:/ecsos/openSUSE_Tumbleweed/repodata/repomd.xml]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /repositories/home:/ecsos/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Fri, 08 Sep 2023 08:19:50 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "b8a-604d4a3f75de8"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 2954
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: must-revalidate
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:03 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < vary: Accept-Encoding
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-content-type-options: nosniff
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:43 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xOpPxDK/repodata/repomd.xml.new.zypp.0nJvNE): 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xOpPxDK/repodata/repomd.xml.new.zypp.0nJvNE -> /var/tmp/AP_0xOpPxDK/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xOpPxDK/repodata/repomd.xml{- 0644 0/0 size 2954}
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xiR6vCI/repodata 00755
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xiR6vCI/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xiR6vCI/repodata/repomd.xml.new.zypp.s1RCLP
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/home:/Dead_Mozay/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.opensuse.org/repositories/home:/Dead_Mozay/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:443...
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=opensuse.org
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /repositories/home:/Dead_Mozay/openSUSE_Tumbleweed/repodata/repomd.xml]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /repositories/home:/Dead_Mozay/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/2
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Thu, 07 Sep 2023 23:54:37 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "b8a-604cd9527a726"
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 2954
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: must-revalidate
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:03 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < vary: Accept-Encoding
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-content-type-options: nosniff
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:43 GMT
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xiR6vCI/repodata/repomd.xml.new.zypp.s1RCLP): 0
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xiR6vCI/repodata/repomd.xml.new.zypp.s1RCLP -> /var/tmp/AP_0xiR6vCI/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xiR6vCI/repodata/repomd.xml{- 0644 0/0 size 2954}
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xn6l6O9/repodata 00755
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xn6l6O9/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xn6l6O9/repodata/repomd.xml.new.zypp.Ux9x1F
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/openSUSE:/Tumbleweed/standard/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://download.opensuse.org/repositories/openSUSE:/Tumbleweed/standard/repodata/repomd.xml
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 195.135.221.134:443...
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:43 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted h2
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: CN=opensuse.org
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/2
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /repositories/openSUSE:/Tumbleweed/standard/repodata/repomd.xml]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /repositories/openSUSE:/Tumbleweed/standard/repodata/repomd.xml HTTP/2
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 302 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < location: https://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_redirects_curl):153 redirecting to location: https://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: max-age=140
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:04 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 325
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/html; charset=iso-8859-1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:44 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Ignoring the response-body
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Issue another request to this URL: 'https://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml'
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Found bundle for host: 0x55d924712b70 [can multiplex]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Re-using existing connection with host download.opensuse.org
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:method: GET]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:scheme: https]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [:path: /tumbleweed/repo/oss/repodata/repomd.xml]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Using Stream ID: 3
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /tumbleweed/repo/oss/repodata/repomd.xml HTTP/2
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: download.opensuse.org
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/2 200 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < last-modified: Thu, 07 Sep 2023 07:22:41 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < etag: "29e5-604bfb9b25240"
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < accept-ranges: bytes
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-length: 10725
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < cache-control: must-revalidate
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < expires: Fri, 08 Sep 2023 10:40:04 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < vary: Accept-Encoding
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-content-type-options: nosniff
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < content-type: text/xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < date: Fri, 08 Sep 2023 10:37:44 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < server: Apache
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xn6l6O9/repodata/repomd.xml.new.zypp.Ux9x1F): 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xn6l6O9/repodata/repomd.xml.new.zypp.Ux9x1F -> /var/tmp/AP_0xn6l6O9/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xn6l6O9/repodata/repomd.xml{- 0644 0/0 size 10725}
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xbYqdkv/repodata 00755
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xbYqdkv/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xbYqdkv/repodata/repomd.xml.new.zypp.vMA9IR
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/yumrepos/edge/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * processing: https://packages.microsoft.com/yumrepos/edge/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *   Trying 13.81.215.193:443...
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connected to packages.microsoft.com (13.81.215.193) port 443
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: offers h2,http/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CAfile: none
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  CApath: /etc/ssl/certs
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * ALPN: server accepted http/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Server certificate:
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; CN=packages.microsoft.com
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  start date: Apr 19 15:10:36 2023 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  expire date: Apr 13 15:10:36 2024 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  subjectAltName: host "packages.microsoft.com" matched cert's "packages.microsoft.com"
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  issuer: C=US; O=Microsoft Corporation; CN=Microsoft Azure TLS Issuing CA 06
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 *  SSL certificate verify ok.
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * using HTTP/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > GET /yumrepos/edge/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Host: packages.microsoft.com
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 > 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * old SSL session ID is stale, removing
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < HTTP/1.1 200 OK
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Date: Fri, 08 Sep 2023 10:37:44 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Type: text/xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Length: 1558
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Connection: keep-alive
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-MD5: 9YqAhOzMLPKToO9pB3qdRQ==
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Last-Modified: Thu, 07 Sep 2023 18:39:09 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < ETag: "0x8DBAFD1B90907CE"
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-request-id: 3b79065a-f01e-00b5-0c40-e2e87c000000
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-version: 2021-08-06
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-version-id: 2023-09-07T18:39:09.0469593Z
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-is-current-version: true
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-creation-time: Thu, 07 Sep 2023 18:39:09 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-lease-status: unlocked
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-lease-state: available
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Content-Disposition: attachment;filename=repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < x-ms-server-encrypted: true
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < X-Content-Type-Options: nosniff
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < Accept-Ranges: bytes
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 < 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d924735860 * Connection #0 to host packages.microsoft.com left intact
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xbYqdkv/repodata/repomd.xml.new.zypp.vMA9IR): 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xbYqdkv/repodata/repomd.xml.new.zypp.vMA9IR -> /var/tmp/AP_0xbYqdkv/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xbYqdkv/repodata/repomd.xml{- 0644 0/0 size 1558}
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xdPCHyC/repodata 00755
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xdPCHyC/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xdPCHyC/repodata/repomd.xml.new.zypp.bkmAjz
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 195.135.221.134:80...
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to download.opensuse.org (195.135.221.134) port 80
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /tumbleweed/repo/oss/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: download.opensuse.org
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:44 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: Apache
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Thu, 07 Sep 2023 07:22:41 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "29e5-604bfb9b25240"
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 10725
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Cache-Control: must-revalidate
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Expires: Fri, 08 Sep 2023 10:40:04 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Vary: Accept-Encoding
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Security-Policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xdPCHyC/repodata/repomd.xml.new.zypp.bkmAjz): 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xdPCHyC/repodata/repomd.xml.new.zypp.bkmAjz -> /var/tmp/AP_0xdPCHyC/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xdPCHyC/repodata/repomd.xml{- 0644 0/0 size 10725}
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xTuQxuy/repodata 00755
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xTuQxuy/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xTuQxuy/repodata/repomd.xml.new.zypp.9Ra68R
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/opensuse/15/prod/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/opensuse/15/prod/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 13.81.215.193:443...
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to packages.microsoft.com (13.81.215.193) port 443
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: offers h2,http/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CAfile: none
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CApath: /etc/ssl/certs
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: server accepted http/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Server certificate:
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; CN=packages.microsoft.com
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  start date: Apr 19 15:10:36 2023 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  expire date: Apr 13 15:10:36 2024 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subjectAltName: host "packages.microsoft.com" matched cert's "packages.microsoft.com"
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  issuer: C=US; O=Microsoft Corporation; CN=Microsoft Azure TLS Issuing CA 06
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  SSL certificate verify ok.
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * using HTTP/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /opensuse/15/prod/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * old SSL session ID is stale, removing
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:44 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 1566
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-MD5: zGZhOmJvoguwHOzOm0K59g==
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Wed, 06 Sep 2023 18:44:38 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "0x8DBAF0952F89681"
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-request-id: f58e18dd-101e-00b4-2d40-e2e981000000
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version: 2021-08-06
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version-id: 2023-09-06T18:44:38.4646785Z
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-is-current-version: true
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-creation-time: Wed, 06 Sep 2023 18:44:38 GMT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-status: unlocked
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-state: available
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Disposition: attachment;filename=repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-server-encrypted: true
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #0 to host packages.microsoft.com left intact
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xTuQxuy/repodata/repomd.xml.new.zypp.9Ra68R): 0
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xTuQxuy/repodata/repomd.xml.new.zypp.9Ra68R -> /var/tmp/AP_0xTuQxuy/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xTuQxuy/repodata/repomd.xml{- 0644 0/0 size 1566}
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xZedR7O/repodata 00755
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xZedR7O/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xZedR7O/repodata/repomd.xml.new.zypp.fa9RA8
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 134.76.12.6:443...
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to ftp.gwdg.de (134.76.12.6) port 443
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: offers h2,http/1.1
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CAfile: none
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CApath: /etc/ssl/certs
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.2 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.2 (IN), TLS handshake, Server key exchange (12):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.2 (IN), TLS handshake, Server finished (14):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:44 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.2 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.2 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: server accepted http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Server certificate:
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  start date: Apr 25 00:00:00 2023 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  expire date: Apr 24 23:59:59 2024 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subjectAltName: host "ftp.gwdg.de" matched cert's "ftp.gwdg.de"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  issuer: C=GB; ST=Greater Manchester; L=Salford; O=Sectigo Limited; CN=Sectigo RSA Organization Validation Secure Server CA
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  SSL certificate verify ok.
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * using HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /pub/linux/misc/packman/suse/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: ftp.gwdg.de
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:45 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 1378
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Fri, 08 Sep 2023 02:26:44 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "64fa8664-562"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=63072000; includeSubDomains; preload
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Frame-Options: SAMEORIGIN
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #0 to host ftp.gwdg.de left intact
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xZedR7O/repodata/repomd.xml.new.zypp.fa9RA8): 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xZedR7O/repodata/repomd.xml.new.zypp.fa9RA8 -> /var/tmp/AP_0xZedR7O/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xZedR7O/repodata/repomd.xml{- 0644 0/0 size 1378}
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xKaVEgP/repodata 00755
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xKaVEgP/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xKaVEgP/repodata/repomd.xml.new.zypp.SeR3nO
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: http://codecs.opensuse.org/openh264/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: http://codecs.opensuse.org/openh264/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 195.135.221.134:80...
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to codecs.opensuse.org (195.135.221.134) port 80
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /openh264/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: codecs.opensuse.org
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:45 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: Apache
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Thu, 08 Jun 2023 08:28:53 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "b8d-5fd9a0ae56405"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 2957
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Vary: Accept-Encoding
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #0 to host codecs.opensuse.org left intact
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xKaVEgP/repodata/repomd.xml.new.zypp.SeR3nO): 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xKaVEgP/repodata/repomd.xml.new.zypp.SeR3nO -> /var/tmp/AP_0xKaVEgP/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xKaVEgP/repodata/repomd.xml{- 0644 0/0 size 2957}
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xEEB9U3/repodata 00755
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xEEB9U3/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xEEB9U3/repodata/repomd.xml.new.zypp.ddrymr
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://download.opensuse.org/repositories/system:/snappy/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://download.opensuse.org/repositories/system:/snappy/openSUSE_Tumbleweed/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 195.135.221.134:443...
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to download.opensuse.org (195.135.221.134) port 443
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: offers h2,http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CAfile: none
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CApath: /etc/ssl/certs
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: server accepted h2
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Server certificate:
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subject: CN=opensuse.org
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  start date: Jul 10 23:46:09 2023 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  expire date: Oct  8 23:46:08 2023 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subjectAltName: host "download.opensuse.org" matched cert's "*.opensuse.org"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  issuer: C=US; O=Let's Encrypt; CN=R3
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  SSL certificate verify ok.
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * using HTTP/2
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [:method: GET]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [:scheme: https]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [:authority: download.opensuse.org]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [:path: /repositories/system:/snappy/openSUSE_Tumbleweed/repodata/repomd.xml]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [x-zypp-anonymousid: 64c73f28-83ae-48ff-ba08-defde8c3adad]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [x-zypp-distributionflavor: appliance-custom]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Using Stream ID: 1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /repositories/system:/snappy/openSUSE_Tumbleweed/repodata/repomd.xml HTTP/2
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: download.opensuse.org
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > X-ZYpp-AnonymousId: 64c73f28-83ae-48ff-ba08-defde8c3adad
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > X-ZYpp-DistributionFlavor: appliance-custom
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * old SSL session ID is stale, removing
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/2 200 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < last-modified: Tue, 05 Sep 2023 15:49:45 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < etag: "e06-6049e936e1f09"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < accept-ranges: bytes
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < content-length: 3590
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < cache-control: must-revalidate
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < expires: Fri, 08 Sep 2023 10:40:05 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < vary: Accept-Encoding
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-content-type-options: nosniff
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < content-security-policy: default-src 'none'; img-src 'self' https://static.opensuse.org; style-src 'self' https://static.opensuse.org; script-src 'self' https://static.opensuse.org 'unsafe-inline'
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < content-type: text/xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < date: Fri, 08 Sep 2023 10:37:45 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < server: Apache
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #0 to host download.opensuse.org left intact
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xEEB9U3/repodata/repomd.xml.new.zypp.ddrymr): 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xEEB9U3/repodata/repomd.xml.new.zypp.ddrymr -> /var/tmp/AP_0xEEB9U3/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xEEB9U3/repodata/repomd.xml{- 0644 0/0 size 3590}
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xCgvIFU/repodata 00755
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xCgvIFU/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xCgvIFU/repodata/repomd.xml.new.zypp.VHm0Af
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://linux.teamviewer.com/yum/stable/main/binary-x86_64/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * processing: https://linux.teamviewer.com/yum/stable/main/binary-x86_64/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *   Trying 18.244.179.3:443...
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * Connected to linux.teamviewer.com (18.244.179.3) port 443
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * ALPN: offers h2,http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  CAfile: none
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  CApath: /etc/ssl/certs
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * ALPN: server accepted h2
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * Server certificate:
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  subject: CN=*.teamviewer.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  start date: Apr 14 00:00:00 2023 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  expire date: May 14 23:59:59 2024 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  subjectAltName: host "linux.teamviewer.com" matched cert's "*.teamviewer.com"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  issuer: C=GB; ST=Greater Manchester; L=Salford; O=Sectigo Limited; CN=Sectigo RSA Domain Validation Secure Server CA
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 *  SSL certificate verify ok.
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * using HTTP/2
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * h2 [:method: GET]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * h2 [:scheme: https]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * h2 [:authority: linux.teamviewer.com]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * h2 [:path: /yum/stable/main/binary-x86_64/repodata/repomd.xml]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * h2 [user-agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * h2 [accept: */*, application/metalink+xml, application/metalink4+xml]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * Using Stream ID: 1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 > GET /yum/stable/main/binary-x86_64/repodata/repomd.xml HTTP/2
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 > Host: linux.teamviewer.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 > 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < HTTP/2 200 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < content-type: binary/octet-stream
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < content-length: 2600
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < last-modified: Tue, 22 Aug 2023 06:57:40 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < x-amz-server-side-encryption: AES256
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < x-amz-version-id: yjgKThJ2ofbuXMeY1wKyTj_17f5pFczW
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < accept-ranges: bytes
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < server: AmazonS3
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < date: Fri, 08 Sep 2023 02:05:52 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < etag: "75bbb6cf416ab447f1dfe9e6f767ef3c"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < x-cache: Hit from cloudfront
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < via: 1.1 d9fff865f15be92cf9bd52ec2827f356.cloudfront.net (CloudFront)
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < x-amz-cf-pop: LHR61-P7
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < x-amz-cf-id: xm8o20d1GGw5Y3SLR2lBrHBpQvW3Cq96KW7oWv8BYyh5yKmTTLjuFQ==
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < age: 30718
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 < 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248d6030 * Connection #0 to host linux.teamviewer.com left intact
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xCgvIFU/repodata/repomd.xml.new.zypp.VHm0Af): 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xCgvIFU/repodata/repomd.xml.new.zypp.VHm0Af -> /var/tmp/AP_0xCgvIFU/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xCgvIFU/repodata/repomd.xml{- 0644 0/0 size 2600}
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xZXmHHW/repodata 00755
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xZXmHHW/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xZXmHHW/repodata/repomd.xml.new.zypp.yIAaoP
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 13.81.215.193:443...
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to packages.microsoft.com (13.81.215.193) port 443
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: offers h2,http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CAfile: none
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CApath: /etc/ssl/certs
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: server accepted http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Server certificate:
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; CN=packages.microsoft.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  start date: Apr 19 15:10:36 2023 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  expire date: Apr 13 15:10:36 2024 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subjectAltName: host "packages.microsoft.com" matched cert's "packages.microsoft.com"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  issuer: C=US; O=Microsoft Corporation; CN=Microsoft Azure TLS Issuing CA 06
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  SSL certificate verify ok.
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * using HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /yumrepos/vscode/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * old SSL session ID is stale, removing
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:45 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 1570
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-MD5: vfTkB4Oz8p9sfSrnoMHJ1w==
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "0x8DBB056605AE865"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-request-id: 335dcc43-801e-00ba-5b40-e2058a000000
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version: 2021-08-06
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version-id: 2023-09-08T10:28:43.3303653Z
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-is-current-version: true
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-creation-time: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-status: unlocked
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-state: available
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Disposition: attachment;filename=repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-server-encrypted: true
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #0 to host packages.microsoft.com left intact
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xZXmHHW/repodata/repomd.xml.new.zypp.yIAaoP): 0
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xZXmHHW/repodata/repomd.xml.new.zypp.yIAaoP -> /var/tmp/AP_0xZXmHHW/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xZXmHHW/repodata/repomd.xml{- 0644 0/0 size 1570}
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{0 B|NoCheckSum|})
--
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(chmod):1098 assert_file_mode 00600 /var/lib/YaST2/cookieschmod /var/lib/YaST2/cookies 00600
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media] MediaHandler.cc(attach):653 Attached: https://packages.microsoft.com/yumrepos/vscode attached; localRoot "/var/tmp/AP_0xcBR3c8"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(checkDesired):153 checkDesired(26): desired (report by zypp::media::NoVerifier)
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetDoesFileExist):973 /repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetDoesFileExist):983 URL: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 13.81.215.193:443...
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to packages.microsoft.com (13.81.215.193) port 443
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: offers h2,http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CAfile: none
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CApath: /etc/ssl/certs
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: server accepted http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Server certificate:
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; CN=packages.microsoft.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  start date: Apr 19 15:10:36 2023 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  expire date: Apr 13 15:10:36 2024 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subjectAltName: host "packages.microsoft.com" matched cert's "packages.microsoft.com"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  issuer: C=US; O=Microsoft Corporation; CN=Microsoft Azure TLS Issuing CA 06
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  SSL certificate verify ok.
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * using HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > HEAD /yumrepos/vscode/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * old SSL session ID is stale, removing
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:45 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 1570
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-MD5: vfTkB4Oz8p9sfSrnoMHJ1w==
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "0x8DBB056605AE865"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-request-id: 335dcc43-801e-00ba-5b40-e2058a000000
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version: 2021-08-06
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version-id: 2023-09-08T10:28:43.3303653Z
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-is-current-version: true
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-creation-time: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-status: unlocked
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-state: available
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Disposition: attachment;filename=repomd.xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-server-encrypted: true
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #0 to host packages.microsoft.com left intact
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media] MediaCurl.cc(doGetDoesFileExist):1056 perform code: 0 [ No error ]
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp] RepoManager.cc(probe):1503 Probed type RPMMD at https://packages.microsoft.com/yumrepos/vscode ()
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(close):349 Close to access handler using id 26 requested
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(release):713 Request to release attached media https<https://packages.microsoft.com/yumrepos/vscode>, use count=1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(release):720 Releasing media https<https://packages.microsoft.com/yumrepos/vscode>
--
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xjJlv51/media.1 00755
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xjJlv51/media.1/media
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xjJlv51/media.1/media.new.zypp.kVfSrC
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /media.1/media
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/yumrepos/vscode/media.1/media
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/yumrepos/vscode/media.1/media
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 13.81.215.193:443...
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to packages.microsoft.com (13.81.215.193) port 443
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: offers h2,http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CAfile: none
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CApath: /etc/ssl/certs
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: server accepted http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Server certificate:
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; CN=packages.microsoft.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  start date: Apr 19 15:10:36 2023 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  expire date: Apr 13 15:10:36 2024 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subjectAltName: host "packages.microsoft.com" matched cert's "packages.microsoft.com"
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  issuer: C=US; O=Microsoft Corporation; CN=Microsoft Azure TLS Issuing CA 06
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  SSL certificate verify ok.
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * using HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /yumrepos/vscode/media.1/media HTTP/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * old SSL session ID is stale, removing
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 404 Not Found
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:45 GMT
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/html
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 162
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * The requested URL returned error: 404
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Closing connection
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS alert, close notify (256):
2023-09-08 11:37:45 <3> RQN6C6(4977) [zypp::media] MediaCurl.cc(doGetFileCopyFile):1265 curl error: 22: The requested URL returned error: 404, temp file size 0 bytes.
2023-09-08 11:37:45 <5> RQN6C6(4977) [zypp-core] Exception.cc(log):186 MediaCurl.cc(evaluateCurlCode):895 THROW:    File '/media.1/media' not found on medium 'https://packages.microsoft.com/yumrepos/vscode'
2023-09-08 11:37:45 <5> RQN6C6(4977) [zypp-core] Exception.cc(log):186 MediaCurl.cc(doGetFileCopyFile):1281 RETHROW:  File '/media.1/media' not found on medium 'https://packages.microsoft.com/yumrepos/vscode'
2023-09-08 11:37:45 <5> RQN6C6(4977) [zypp-core] Exception.cc(log):186 MediaMultiCurl.cc(doGetFileCopy):1381 RETHROW:  File '/media.1/media' not found on medium 'https://packages.microsoft.com/yumrepos/vscode'
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(unlink):706 unlink /var/tmp/AP_0xjJlv51/media.1/media.new.zypp.kVfSrC
--
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(assert_dir):353 mkdir /var/tmp/AP_0xjJlv51/repodata 00755
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xjJlv51/repodata/repomd.xml.asc
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xjJlv51/repodata/repomd.xml.asc.new.zypp.VpwV5a
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml.asc
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml.asc
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml.asc
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Hostname packages.microsoft.com was found in DNS cache
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *   Trying 13.81.215.193:443...
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connected to packages.microsoft.com (13.81.215.193) port 443
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: offers h2,http/1.1
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL re-using session ID
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CAfile: none
2023-09-08 11:37:45 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  CApath: /etc/ssl/certs
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Finished (20):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * ALPN: server accepted http/1.1
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Server certificate:
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; CN=packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  start date: Apr 19 15:10:36 2023 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  expire date: Apr 13 15:10:36 2024 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  subjectAltName: host "packages.microsoft.com" matched cert's "packages.microsoft.com"
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  issuer: C=US; O=Microsoft Corporation; CN=Microsoft Azure TLS Issuing CA 06
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 *  SSL certificate verify ok.
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * using HTTP/1.1
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /yumrepos/vscode/repodata/repomd.xml.asc HTTP/1.1
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * old SSL session ID is stale, removing
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:46 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: application/octet-stream
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 481
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-MD5: 8WVwbi+Cf27Su+XFY3EPKA==
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "0x8DBB05660615022"
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-request-id: 4238d30f-601e-0033-2f40-e2bcae000000
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version: 2021-08-06
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version-id: 2023-09-08T10:28:43.3723426Z
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-is-current-version: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-creation-time: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-status: unlocked
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-state: available
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Disposition: attachment;filename=repomd.xml.asc
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-server-encrypted: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #1 to host packages.microsoft.com left intact
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xjJlv51/repodata/repomd.xml.asc.new.zypp.VpwV5a): 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xjJlv51/repodata/repomd.xml.asc.new.zypp.VpwV5a -> /var/tmp/AP_0xjJlv51/repodata/repomd.xml.asc
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xjJlv51/repodata/repomd.xml.asc{- 0644 0/0 size 481}
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml.asc{19.1 MiB|NoCheckSum|})
--
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(checkDesired):155 checkDesired(27): desired (cached)
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xjJlv51/repodata/repomd.xml.key
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xjJlv51/repodata/repomd.xml.key.new.zypp.y4eTSg
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml.key
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml.key
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml.key
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Found bundle for host: 0x55d924851d20 [serially]
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Can not multiplex, even if we wanted to
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Re-using existing connection with host packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /yumrepos/vscode/repodata/repomd.xml.key HTTP/1.1
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:46 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: application/octet-stream
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 949
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-MD5: 3ijnFCGDk5Ma74axwpI5gw==
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "0x8DBB056606769C9"
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-request-id: 033516b1-901e-010b-203f-e2bba2000000
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version: 2021-08-06
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version-id: 2023-09-08T10:28:43.4133209Z
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-is-current-version: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-creation-time: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-status: unlocked
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-state: available
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Disposition: attachment;filename=repomd.xml.key
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-server-encrypted: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #1 to host packages.microsoft.com left intact
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xjJlv51/repodata/repomd.xml.key.new.zypp.y4eTSg): 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xjJlv51/repodata/repomd.xml.key.new.zypp.y4eTSg -> /var/tmp/AP_0xjJlv51/repodata/repomd.xml.key
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xjJlv51/repodata/repomd.xml.key{- 0644 0/0 size 949}
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml.key{19.1 MiB|NoCheckSum|})
--
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(checkDesired):155 checkDesired(27): desired (cached)
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xjJlv51/repodata/repomd.xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xjJlv51/repodata/repomd.xml.new.zypp.0Bu8Up
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 /repodata/repomd.xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/yumrepos/vscode/repodata/repomd.xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Found bundle for host: 0x55d924851d20 [serially]
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Can not multiplex, even if we wanted to
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Re-using existing connection with host packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /yumrepos/vscode/repodata/repomd.xml HTTP/1.1
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:46 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: text/xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 1570
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-MD5: vfTkB4Oz8p9sfSrnoMHJ1w==
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "0x8DBB056605AE865"
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-request-id: 335dcc43-801e-00ba-5b40-e2058a000000
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version: 2021-08-06
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version-id: 2023-09-08T10:28:43.3303653Z
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-is-current-version: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-creation-time: Fri, 08 Sep 2023 10:28:43 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-status: unlocked
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-state: available
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Disposition: attachment;filename=repomd.xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-server-encrypted: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #1 to host packages.microsoft.com left intact
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xjJlv51/repodata/repomd.xml.new.zypp.0Bu8Up): 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xjJlv51/repodata/repomd.xml.new.zypp.0Bu8Up -> /var/tmp/AP_0xjJlv51/repodata/repomd.xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xjJlv51/repodata/repomd.xml{- 0644 0/0 size 1570}
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]/repodata/repomd.xml{19.1 MiB|NoCheckSum|})
--
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaManager.cc(checkDesired):155 checkDesired(27): desired (cached)
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1352 dest: /var/tmp/AP_0xjJlv51/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1353 temp: /var/tmp/AP_0xjJlv51/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz.new.zypp.tmamo7
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1190 ./repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaCurl.cc(doGetFileCopyFile):1200 URL: https://packages.microsoft.com/yumrepos/vscode/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * processing: https://packages.microsoft.com/yumrepos/vscode/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Found bundle for host: 0x55d924851d20 [serially]
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Can not multiplex, even if we wanted to
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Re-using existing connection with host packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > GET /yumrepos/vscode/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz HTTP/1.1
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Host: packages.microsoft.com
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > User-Agent: ZYpp 17.31.15 (curl 8.2.1) openSUSE-Tumbleweed-x86_64
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > Accept: */*, application/metalink+xml, application/metalink4+xml
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 > 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < HTTP/1.1 200 OK
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Server: nginx/1.18.0 (Ubuntu)
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Date: Fri, 08 Sep 2023 10:37:46 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Type: application/gzip
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Length: 690992
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Connection: keep-alive
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-MD5: ZgX72KFwe6M0v95XCOrCbA==
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Last-Modified: Fri, 08 Sep 2023 10:26:48 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < ETag: "0x8DBB0561BBD1616"
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-request-id: ed8aadfc-201e-00d1-0a3f-e258dc000000
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version: 2021-08-06
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-version-id: 2023-09-08T10:26:48.2109974Z
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-is-current-version: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-creation-time: Fri, 08 Sep 2023 10:26:48 GMT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-status: unlocked
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-lease-state: available
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-blob-type: BlockBlob
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Content-Disposition: attachment;filename=3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < x-ms-server-encrypted: true
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Strict-Transport-Security: max-age=31536000; includeSubDomains
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-Content-Type-Options: nosniff
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < X-PMC-Cache-Status: HIT
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < Accept-Ranges: bytes
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 < 
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(progressCallback):1302 looks_like_metalink_fd: 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-curl++] curlhelper.cc(log_curl):113 0x55d9248a1e70 * Connection #1 to host packages.microsoft.com left intact
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1391 HTTP response: 200
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(looks_like_metalink):1258 looks_like_metalink(/var/tmp/AP_0xjJlv51/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz.new.zypp.tmamo7): 0
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp-core] PathInfo.cc(rename):748 rename /var/tmp/AP_0xjJlv51/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz.new.zypp.tmamo7 -> /var/tmp/AP_0xjJlv51/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaMultiCurl.cc(doGetFileCopy):1532 done: /var/tmp/AP_0xjJlv51/repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz{- 0644 0/0 size 690992}
2023-09-08 11:37:46 <1> RQN6C6(4977) [zypp::media++] MediaHandler.cc(provideFile):976 provideFile([1]./repodata/3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d-primary.xml.gz{674.8 KiB|sha256-3b96a93f1ecca38a596f5a6a4caa69d85768e79112197df173b1cde2f616fa3d|/var/cache/zypp/raw/vscode/repodata/30d84919ab84db1fcef6fae877e9cc72fb103a995d00746490dd8d86508f2c85-primary.xml.gz})
grep: /var/log/zypper.log: binary file matches
rokejulianlockhart@RQN6C6:~>

@mlandres
Copy link
Member

mlandres commented Sep 8, 2023

@RokeJulianLockhart Sorry, but we'd need one block showing the curl error: 55. The above blocks are all fine (HTTP response: 200 or 404 for an unavailable optional file).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants