[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Support for SSH_MSG_CHANNEL_REQUEST that is unknown


Hi,

I applied the patch.

Attaching new log file here.

Br,

//mike

-----Original Message-----
From: Jakub Jelen <jjelen@xxxxxxxxxx> 
Sent: Friday, 6 September 2024 09:41
To: libssh@xxxxxxxxxx
Subject: Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknown

Thank you.

I see right, in this case, there is no log line with ssh_message_reply_default(), that was the problem previously.

I also see in the build process that the patch to check the return value of nc_session_ssh_msg() was added (but with wrong argument -- msg instead of ssh_msg) -- I also do not see that patch applied anywhere. Can you try with the attached patch if it will make some difference?


On Thu, Sep 5, 2024 at 4:14 PM Mikael Petterson <mikael.petterson@xxxxxxxxxxxx> wrote:
>
> Hi Jakub and Michal
>
> I finally managed to replace and use level 4.
>
> I will attach file.
>
> Br,
>
> //mike
>
> -----Original Message-----
> From: Jakub Jelen <jjelen@xxxxxxxxxx>
> Sent: Thursday, 5 September 2024 10:58
> To: libssh@xxxxxxxxxx
> Subject: Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknown
>
> Right, this message sounds suspicious, but it is not clear to me where does it come from, especially when I can not reproduce the issue with just libssh as mentioned before.
>
> I see in the log that the `trilead-ping` is received twice over the exchange, but both are processed only at the end of the output. The first comes with type 0:
>
> 2024-09-04 10:02:36,496 (Slf4jLogConsumer.java:73)  INFO : STDERR:
> [2024/09/04 08:02:36.482476, 3] ssh_message_reply_default:  Don't know 
> what to default reply to 0 type
>
> but the second comes with the suspicious large value, which differs between invocations (If I read right):
>
> 2024-09-04 10:02:36,920 (Slf4jLogConsumer.java:73)  INFO : STDERR:
> [2024/09/04 08:02:36.925229, 3] ssh_message_reply_default:  Don't know 
> what to default reply to 1120325360 type
>
> So this looks like that the memory where the message is stored (when passed to the ssh_message_reply_default() function), is either uninitialized or more likely freed and already rewritten by something else. Can you run the netopeer2 under valgrind to see if there are some invalid memory accesses or violations?
>
> Jakub
>
> On Thu, Sep 5, 2024 at 8:18 AM Michal Vasko <mvasko@xxxxxxxxx> wrote:
> >
> > Hi Jakub,
> >
> > libnetconf2/netopeer2 author here. The issue actually started in our 
> > projects but was then moved to libssh because I believe that is 
> > where the problem is. That should be supported by the output
> >
> > [2024/09/02 09:46:31.284447, 3] ssh_message_reply_default:  Don't 
> > know what to default reply to 67108912 type
> >
> > meaning libssh is asked to send the reply but it fails to do so. You 
> > asked for trace-level output and Mike should be able to provide it, 
> > soon. Hopefully, you will be able to reproduce the problem and fix it then.
> >
> > Regards,
> > Michal
> >
> > On 4. 9. 2024 17:21, Jakub Jelen wrote:
> > > The following line from the log shows that the function processing 
> > > the packet is called as expected
> > >
> > > 2024-09-04 10:02:36,919 (Slf4jLogConsumer.java:73)  INFO : STDERR:
> > > [2024/09/04 08:02:36.925128, 3] ssh_message_handle_channel_request:
> > > Received a trilead-ping channel_request for channel (43:100)
> > > (want_reply=1)
> > >
> > > So it looks like all of the message is parsed correctly on the 
> > > libssh side. The next message comes form netopeer2:
> > >
> > > 2024-09-04 10:02:36,920 (Slf4jLogConsumer.java:73)  INFO : STDERR:
> > > [INF]: LN: Session 1: Received an SSH message "request-channel" of 
> > > subtype "unknown".
> > >
> > >  From here:
> > >
> > > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2F
> > > gi%2F&data=05%7C02%7Cmikael.petterson%40ericsson.com%7C4523de353f3
> > > b4b21677f08dcce474669%7C92e84cebfbfd47abbe52080c6b87953f%7C0%7C0%7
> > > C638612052746761002%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLC
> > > JQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=Lh
> > > BNVBPm7pfRaiqrxSfmTJw4AaTTLdp6UYbFejf2TLU%3D&reserved=0
> > > thub.com%2FCESNET%2Flibnetconf2%2Fblob%2F47ca0fb5f94588d112ec2bf26
> > > 94 
> > > 6948189e1c18d%2Fsrc%2Fsession_server_ssh.c%23L1692&data=05%7C02%7C
> > > mi
> > > kael.petterson%40ericsson.com%7C719221ae31dc4b58302a08dccd88d893%7
> > > C9 
> > > 2e84cebfbfd47abbe52080c6b87953f%7C0%7C0%7C638611234853208375%7CUnk
> > > no 
> > > wn%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1ha
> > > Ww 
> > > iLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=Y6QUN%2Fj4%2F9qN9Dscw4MgnrDVxy7
> > > oJ
> > > 1ytZ%2B4Evkphj5E%3D&reserved=0
> > >
> > > It looks like netopeer2 is handling the messages on its own 
> > > instead of using the callbacks. It most of the cases, the callers 
> > > of this function check the return value, but there is one where 
> > > they do not do that, which might cause this behavior where the reply is not sent:
> > >
> > > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2F
> > > gi%2F&data=05%7C02%7Cmikael.petterson%40ericsson.com%7C4523de353f3
> > > b4b21677f08dcce474669%7C92e84cebfbfd47abbe52080c6b87953f%7C0%7C0%7
> > > C638612052746778162%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLC
> > > JQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=u8
> > > iOGYcF1WcUjrK%2BI3TeQNrMrn0Bu0leulAEKbc1JS4%3D&reserved=0
> > > thub.com%2FCESNET%2Flibnetconf2%2Fblob%2F47ca0fb5f94588d112ec2bf26
> > > 94 
> > > 6948189e1c18d%2Fsrc%2Fsession_server.c%23L1609&data=05%7C02%7Cmika
> > > el
> > > .petterson%40ericsson.com%7C719221ae31dc4b58302a08dccd88d893%7C92e
> > > 84
> > > cebfbfd47abbe52080c6b87953f%7C0%7C0%7C638611234853219071%7CUnknown
> > > %7 
> > > CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiL
> > > CJ
> > > XVCI6Mn0%3D%7C0%7C%7C%7C&sdata=p3xTb6x9a1nrqaZPJ5H1l7NNGDSHctbuOHE
> > > %2
> > > BTqO775c%3D&reserved=0
> > >
> > > I would probably suggest to open an issue to netopeer2 to confirm 
> > > that this could be the cause. The default callbacks that we have 
> > > in libssh seems to process the messages correctly.
> > >
> > > Jakub
> > >>>>> I checked the RFC
> > >>>>> https://ww/
> > >>>>> w.rfc-editor.org%2Frfc%2Frfc4254.html%23section-5&data=05%7C02
> > >>>>> %7
> > >>>>> Cm
> > >>>>> ik
> > >>>>> ael.petterson%40ericsson.com%7C2e154092532e4b0f804308dccc035f0
> > >>>>> 5%
> > >>>>> 7C
> > >>>>> 92
> > >>>>> e84cebfbfd47abbe52080c6b87953f%7C0%7C0%7C638609562056373731%7C
> > >>>>> Un
> > >>>>> kn
> > >>>>> ow
> > >>>>> n%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik
> > >>>>> 1h
> > >>>>> aW
> > >>>>> wi
> > >>>>> LCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=Q%2FSgGmCtGEbBiJV2ah9n2IAsdF
> > >>>>> aa
> > >>>>> CN
> > >>>>> XW
> > >>>>> QsYZ7E0CcmQ%3D&reserved=0
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> 5.4.  Channel-Specific Requests
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>     Many 'channel type' values have extensions that are 
> > >>>>> specific to that
> > >>>>>
> > >>>>>     particular 'channel type'.  An example is requesting a pty 
> > >>>>> (pseudo
> > >>>>>
> > >>>>>     terminal) for an interactive session.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>     All channel-specific requests use the following format.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>        byte      SSH_MSG_CHANNEL_REQUEST
> > >>>>>
> > >>>>>        uint32    recipient channel
> > >>>>>
> > >>>>>        string    request type in US-ASCII characters only
> > >>>>>
> > >>>>>        boolean   want reply
> > >>>>>
> > >>>>>        ....      type-specific data follows
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> Ylonen & Lonvick            Standards Track                     [Page 9]
> > >>>>>
> > >>>>> ________________________________
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> RFC 4254                SSH Connection Protocol             January 2006
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>     If 'want reply' is FALSE, no response will be sent to the request.
> > >>>>>
> > >>>>>     Otherwise, the recipient responds with either
> > >>>>>
> > >>>>>     SSH_MSG_CHANNEL_SUCCESS, SSH_MSG_CHANNEL_FAILURE, or 
> > >>>>> request-specific
> > >>>>>
> > >>>>>     continuation messages.  If the request is not recognized 
> > >>>>> or is not
> > >>>>>
> > >>>>>     supported for the channel, SSH_MSG_CHANNEL_FAILURE is returned.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>     This message does not consume window space and can be sent 
> > >>>>> even if no
> > >>>>>
> > >>>>>     window space is available.  The values of 'request type' 
> > >>>>> are local to
> > >>>>>
> > >>>>>     each channel type.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>     The client is allowed to send further messages without 
> > >>>>> waiting for
> > >>>>>
> > >>>>>     the response to the request.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>     'request type' names follow the DNS extensibility naming 
> > >>>>> convention
> > >>>>>
> > >>>>>     outlined in [SSH-ARCH] and [SSH-NUMBERS].
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>        byte      SSH_MSG_CHANNEL_SUCCESS
> > >>>>>
> > >>>>>        uint32    recipient channel
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>        byte      SSH_MSG_CHANNEL_FAILURE
> > >>>>>
> > >>>>>        uint32    recipient channel
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>     These messages do not consume window space and can be sent 
> > >>>>> even if no
> > >>>>>
> > >>>>>     window space is available.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> So we should at least expect a SSH_MSG_CHANNEL_FAILURE.
> > >>>>>
> > >>>>>
> > >>>>> I checked:
> > >>>>>
> > >>>>> https://gi/
> > >>>>> thub.com%2Flibssh%2Flibssh-mirror%2Fblob%2Fmaster%2Fsrc%2Fmess
> > >>>>> ag
> > >>>>> es
> > >>>>> .c
> > >>>>> %23L175&data=05%7C02%7Cmikael.petterson%40ericsson.com%7C2e154
> > >>>>> 09
> > >>>>> 25
> > >>>>> 32
> > >>>>> e4b0f804308dccc035f05%7C92e84cebfbfd47abbe52080c6b87953f%7C0%7
> > >>>>> C0
> > >>>>> %7
> > >>>>> C6
> > >>>>> 38609562056380910%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAi
> > >>>>> LC
> > >>>>> JQ
> > >>>>> Ij
> > >>>>> oiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=71
> > >>>>> nn
> > >>>>> DT
> > >>>>> 4y
> > >>>>> jtVA0tkfjqrViDjTKFyhsPwtQibVIJFzhr8%3D&reserved=0
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> But could not see any support for unknown.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> Maybe I am looking in the wrong place.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> Br.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>> //mike
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>
> > >>
> > >
>
>
2024-09-06 11:13:46,123 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,123 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,123 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-ssh-server@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,123 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:46,123 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/iana-crypt-hash@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,123 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,123 (Wire.java:92) DEBUG : http-outgoing-0 << "72[\r][\n]"
2024-09-06 11:13:46,123 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/iana-ssh-public-key-algs@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,123 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,124 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,124 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/iana-crypt-hash@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,124 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,124 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/iana-ssh-public-key-algs@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-tcp-common@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "74[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/iana-tls-cipher-suite-algs@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,124 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,124 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-tcp-common@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,124 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,124 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/iana-tls-cipher-suite-algs@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "6a[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf-acm@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "6b[\r][\n]"
2024-09-06 11:13:46,124 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/iana-ssh-mac-algs@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "67[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-keystore@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,125 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,125 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf-acm@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,125 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,125 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/iana-ssh-mac-algs@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,125 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,125 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-keystore@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "6b[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-crypto-types@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "71[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf-monitoring@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-ssh-common@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,125 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,125 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,126 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-crypto-types@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,126 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,126 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf-monitoring@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,126 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,126 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-ssh-common@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "70[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-x509-cert-to-name@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "6d[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf-server@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "66[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-truststore@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:46,126 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,126 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,126 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-x509-cert-to-name@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,127 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,127 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf-server@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,127 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,127 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-netconf@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,127 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,127 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/share/yang/modules/libnetconf2/ietf-truststore@xxxxxxxxxxxxxxx
2024-09-06 11:13:46,127 (Wire.java:92) DEBUG : http-outgoing-0 << "43[\r][\n]"
2024-09-06 11:13:46,127 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/lib/libnetconf2.so.4.4.0\n"}[\r][\n]"
2024-09-06 11:13:46,127 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,127 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,127 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/lib/libnetconf2.so.4.4.0
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "3f[\r][\n]"
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/lib/libnetconf2.so.4\n"}[\r][\n]"
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,128 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,128 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/lib/libnetconf2.so.4
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/lib/libnetconf2.so\n"}[\r][\n]"
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "3e[\r][\n]"
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/nc_client.h\n"}[\r][\n]"
2024-09-06 11:13:46,128 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,129 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,129 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/lib/libnetconf2.so
2024-09-06 11:13:46,129 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,129 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/nc_client.h
2024-09-06 11:13:46,129 (Wire.java:92) DEBUG : http-outgoing-0 << "3e[\r][\n]"
2024-09-06 11:13:46,129 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/nc_server.h\n"}[\r][\n]"
2024-09-06 11:13:46,129 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,129 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,129 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/nc_server.h
2024-09-06 11:13:46,129 (Wire.java:92) DEBUG : http-outgoing-0 << "3f[\r][\n]"
2024-09-06 11:13:46,129 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/nc_version.h\n"}[\r][\n]"
2024-09-06 11:13:46,129 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,130 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,130 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/nc_version.h
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "3e[\r][\n]"
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2\n"}[\r][\n]"
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,130 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,130 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "4f[\r][\n]"
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/session_server.h\n"}[\r][\n]"
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "4f[\r][\n]"
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/session_client.h\n"}[\r][\n]"
2024-09-06 11:13:46,130 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,130 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,130 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/session_server.h
2024-09-06 11:13:46,130 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,130 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/session_client.h
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "44[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/log.h\n"}[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "50[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/messages_client.h\n"}[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "52[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/session_client_ch.h\n"}[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,131 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,131 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/log.h
2024-09-06 11:13:46,131 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,131 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/messages_client.h
2024-09-06 11:13:46,131 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,131 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/session_client_ch.h
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "4e[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/server_config.h\n"}[\r][\n]"
2024-09-06 11:13:46,131 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "48[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/session.h\n"}[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "52[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/session_server_ch.h\n"}[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "50[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/messages_server.h\n"}[\r][\n]"
2024-09-06 11:13:46,132 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,132 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,132 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/server_config.h
2024-09-06 11:13:46,132 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,133 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/session.h
2024-09-06 11:13:46,133 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,133 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/session_server_ch.h
2024-09-06 11:13:46,133 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,133 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/messages_server.h
2024-09-06 11:13:46,133 (Wire.java:92) DEBUG : http-outgoing-0 << "48[\r][\n]"
2024-09-06 11:13:46,133 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/include/libnetconf2/netconf.h\n"}[\r][\n]"
2024-09-06 11:13:46,133 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,133 (Wire.java:92) DEBUG : http-outgoing-0 << "47[\r][\n]"
2024-09-06 11:13:46,133 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/local/lib/pkgconfig/libnetconf2.pc\n"}[\r][\n]"
2024-09-06 11:13:46,133 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,133 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,133 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/include/libnetconf2/netconf.h
2024-09-06 11:13:46,133 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,134 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/local/lib/pkgconfig/libnetconf2.pc
2024-09-06 11:13:46,825 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:13:46,825 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 5d6d1f224f21\n"}[\r][\n]"
2024-09-06 11:13:46,825 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,825 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,825 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 5d6d1f224f21
2024-09-06 11:13:46,825 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:13:46,825 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e 3abce4849f25\n"}[\r][\n]"
2024-09-06 11:13:46,825 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,826 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:46,826 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 16/28 : COPY libssh_trace.patch /home/netconf/libssh_trace.patch"}[\r][\n]"
2024-09-06 11:13:46,826 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,826 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:13:46,826 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:13:46,826 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,826 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,826 (ImageFromDockerfile.java:106) DEBUG :  ---> 3abce4849f25
2024-09-06 11:13:46,826 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,826 (ImageFromDockerfile.java:106) DEBUG : Step 16/28 : COPY libssh_trace.patch /home/netconf/libssh_trace.patch
2024-09-06 11:13:46,826 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,826 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:13:46,897 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:13:46,897 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e 0f3be849728c\n"}[\r][\n]"
2024-09-06 11:13:46,897 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,897 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,897 (ImageFromDockerfile.java:106) DEBUG :  ---> 0f3be849728c
2024-09-06 11:13:46,897 (Wire.java:92) DEBUG : http-outgoing-0 << "1e4[\r][\n]"
2024-09-06 11:13:46,897 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 17/28 : RUN       cd /opt/dev \u0026\u0026       git clone https://github.com/CESNET/Netopeer2.git \u0026\u0026 cd Netopeer2 \u0026\u0026       git checkout devel \u0026\u0026       sed -i \"s|np2_libssh_verbose_level = 3;|np2_libssh_verbose_level = 4;|\" src/main.c \u0026\u0026       mkdir build \u0026\u0026 cd build \u0026\u0026       cmake -DNACM_RECOVERY_UID=102 -DCMAKE_INSTALL_PREFIX:PATH=/usr .. \u0026\u0026       make -j2 \u0026\u0026       make install"}[\r][\n]"
2024-09-06 11:13:46,897 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,897 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:13:46,898 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:13:46,898 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,898 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,898 (ImageFromDockerfile.java:106) DEBUG : Step 17/28 : RUN       cd /opt/dev &&       git clone https://github.com/CESNET/Netopeer2.git && cd Netopeer2 &&       git checkout devel &&       sed -i "s|np2_libssh_verbose_level = 3;|np2_libssh_verbose_level = 4;|" src/main.c &&       mkdir build && cd build &&       cmake -DNACM_RECOVERY_UID=102 -DCMAKE_INSTALL_PREFIX:PATH=/usr .. &&       make -j2 &&       make install
2024-09-06 11:13:46,898 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,898 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:13:46,952 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:13:46,952 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 677e7d636f0c\n"}[\r][\n]"
2024-09-06 11:13:46,952 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:46,953 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:46,953 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 677e7d636f0c
2024-09-06 11:13:47,446 (Wire.java:92) DEBUG : http-outgoing-0 << "3f[\r][\n]"
2024-09-06 11:13:47,446 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\u001b[91mCloning into 'Netopeer2'...\n\u001b[0m"}[\r][\n]"
2024-09-06 11:13:47,446 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:47,446 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:47,447 (ImageFromDockerfile.java:106) DEBUG : Cloning into 'Netopeer2'...

2024-09-06 11:13:49,240 (Wire.java:92) DEBUG : http-outgoing-0 << "44[\r][\n]"
2024-09-06 11:13:49,240 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\u001b[91mSwitched to a new branch 'devel'\n\u001b[0m"}[\r][\n]"
2024-09-06 11:13:49,240 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,240 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,241 (ImageFromDockerfile.java:106) DEBUG : Switched to a new branch 'devel'

2024-09-06 11:13:49,241 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:49,241 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Branch 'devel' set up to track remote branch 'devel' from 'origin'.\n"}[\r][\n]"
2024-09-06 11:13:49,241 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,241 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,241 (ImageFromDockerfile.java:106) DEBUG : Branch 'devel' set up to track remote branch 'devel' from 'origin'.
2024-09-06 11:13:49,286 (Wire.java:92) DEBUG : http-outgoing-0 << "3f[\r][\n]"
2024-09-06 11:13:49,286 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- The C compiler identification is GNU 11.4.0\n"}[\r][\n]"
2024-09-06 11:13:49,286 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,286 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,286 (ImageFromDockerfile.java:106) DEBUG : -- The C compiler identification is GNU 11.4.0
2024-09-06 11:13:49,291 (Wire.java:92) DEBUG : http-outgoing-0 << "31[\r][\n]"
2024-09-06 11:13:49,291 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Detecting C compiler ABI info\n"}[\r][\n]"
2024-09-06 11:13:49,291 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,291 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,291 (ImageFromDockerfile.java:106) DEBUG : -- Detecting C compiler ABI info
2024-09-06 11:13:49,335 (Wire.java:92) DEBUG : http-outgoing-0 << "38[\r][\n]"
2024-09-06 11:13:49,336 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Detecting C compiler ABI info - done\n"}[\r][\n]"
2024-09-06 11:13:49,336 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,336 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,336 (ImageFromDockerfile.java:106) DEBUG : -- Detecting C compiler ABI info - done
2024-09-06 11:13:49,341 (Wire.java:92) DEBUG : http-outgoing-0 << "47[\r][\n]"
2024-09-06 11:13:49,341 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Check for working C compiler: /usr/bin/cc - skipped\n"}[\r][\n]"
2024-09-06 11:13:49,341 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,341 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,341 (ImageFromDockerfile.java:106) DEBUG : -- Check for working C compiler: /usr/bin/cc - skipped
2024-09-06 11:13:49,341 (Wire.java:92) DEBUG : http-outgoing-0 << "30[\r][\n]"
2024-09-06 11:13:49,342 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Detecting C compile features\n"}[\r][\n]"
2024-09-06 11:13:49,342 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,342 (Wire.java:92) DEBUG : http-outgoing-0 << "37[\r][\n]"
2024-09-06 11:13:49,342 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Detecting C compile features - done\n"}[\r][\n]"
2024-09-06 11:13:49,342 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,342 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,342 (ImageFromDockerfile.java:106) DEBUG : -- Detecting C compile features
2024-09-06 11:13:49,342 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,342 (ImageFromDockerfile.java:106) DEBUG : -- Detecting C compile features - done
2024-09-06 11:13:49,352 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:49,352 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found PkgConfig: /usr/bin/pkg-config (found version \"0.29.2\") \n"}[\r][\n]"
2024-09-06 11:13:49,352 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,352 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,352 (ImageFromDockerfile.java:106) DEBUG : -- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.2")
2024-09-06 11:13:49,352 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:13:49,352 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Checking for module 'libnetconf2'\n"}[\r][\n]"
2024-09-06 11:13:49,352 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,352 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,352 (ImageFromDockerfile.java:106) DEBUG : -- Checking for module 'libnetconf2'
2024-09-06 11:13:49,359 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:49,359 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"--   Found libnetconf2, version 3.5.0\n"}[\r][\n]"
2024-09-06 11:13:49,359 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,359 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,359 (ImageFromDockerfile.java:106) DEBUG : --   Found libnetconf2, version 3.5.0
2024-09-06 11:13:49,374 (Wire.java:92) DEBUG : http-outgoing-0 << "4c[\r][\n]"
2024-09-06 11:13:49,374 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- libnetconf2 was compiled with support of up to 6 threads\n"}[\r][\n]"
2024-09-06 11:13:49,374 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,374 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,374 (ImageFromDockerfile.java:106) DEBUG : -- libnetconf2 was compiled with support of up to 6 threads
2024-09-06 11:13:49,382 (Wire.java:92) DEBUG : http-outgoing-0 << "72[\r][\n]"
2024-09-06 11:13:49,382 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found CMocka: /usr/lib/x86_64-linux-gnu/libcmocka.so (Required is at least version \"1.0.1\") \n"}[\r][\n]"
2024-09-06 11:13:49,382 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,382 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,382 (ImageFromDockerfile.java:106) DEBUG : -- Found CMocka: /usr/lib/x86_64-linux-gnu/libcmocka.so (Required is at least version "1.0.1")
2024-09-06 11:13:49,383 (Wire.java:92) DEBUG : http-outgoing-0 << "6b[\r][\n]"
2024-09-06 11:13:49,383 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Could NOT find Uncrustify (missing: UNCRUSTIFY) (Required is at least version \"0.77\")\n"}[\r][\n]"
2024-09-06 11:13:49,383 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,383 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,383 (ImageFromDockerfile.java:106) DEBUG : -- Could NOT find Uncrustify (missing: UNCRUSTIFY) (Required is at least version "0.77")
2024-09-06 11:13:49,409 (Wire.java:92) DEBUG : http-outgoing-0 << "8d[\r][\n]"
2024-09-06 11:13:49,409 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libcrypto.so (found suitable version \"3.0.2\", minimum required is \"3.0.0\")  \n"}[\r][\n]"
2024-09-06 11:13:49,409 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,409 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,409 (ImageFromDockerfile.java:106) DEBUG : -- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libcrypto.so (found suitable version "3.0.2", minimum required is "3.0.0")
2024-09-06 11:13:49,414 (Wire.java:92) DEBUG : http-outgoing-0 << "72[\r][\n]"
2024-09-06 11:13:49,414 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found LibSSH: /usr/include (found suitable version \"0.11.0\", minimum required is \"0.9.5\") \n"}[\r][\n]"
2024-09-06 11:13:49,414 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,414 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,414 (ImageFromDockerfile.java:106) DEBUG : -- Found LibSSH: /usr/include (found suitable version "0.11.0", minimum required is "0.9.5")
2024-09-06 11:13:49,416 (Wire.java:92) DEBUG : http-outgoing-0 << "87[\r][\n]"
2024-09-06 11:13:49,416 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found LibNETCONF2: /usr/local/lib/libnetconf2.so (found suitable version \"4.4.0\", minimum required is \"4.4.0\") \n"}[\r][\n]"
2024-09-06 11:13:49,416 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,416 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,416 (ImageFromDockerfile.java:106) DEBUG : -- Found LibNETCONF2: /usr/local/lib/libnetconf2.so (found suitable version "4.4.0", minimum required is "4.4.0")
2024-09-06 11:13:49,416 (Wire.java:92) DEBUG : http-outgoing-0 << "32[\r][\n]"
2024-09-06 11:13:49,416 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for NC_ENABLED_SSH_TLS\n"}[\r][\n]"
2024-09-06 11:13:49,416 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,416 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,416 (ImageFromDockerfile.java:106) DEBUG : -- Looking for NC_ENABLED_SSH_TLS
2024-09-06 11:13:49,489 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:49,489 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for NC_ENABLED_SSH_TLS - found\n"}[\r][\n]"
2024-09-06 11:13:49,489 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,490 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,490 (ImageFromDockerfile.java:106) DEBUG : -- Looking for NC_ENABLED_SSH_TLS - found
2024-09-06 11:13:49,490 (Wire.java:92) DEBUG : http-outgoing-0 << "2d[\r][\n]"
2024-09-06 11:13:49,490 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for _POSIX_TIMERS\n"}[\r][\n]"
2024-09-06 11:13:49,490 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,490 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,490 (ImageFromDockerfile.java:106) DEBUG : -- Looking for _POSIX_TIMERS
2024-09-06 11:13:49,532 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:13:49,533 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for _POSIX_TIMERS - found\n"}[\r][\n]"
2024-09-06 11:13:49,533 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,533 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,533 (ImageFromDockerfile.java:106) DEBUG : -- Looking for _POSIX_TIMERS - found
2024-09-06 11:13:49,533 (Wire.java:92) DEBUG : http-outgoing-0 << "37[\r][\n]"
2024-09-06 11:13:49,533 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_mutex_timedlock\n"}[\r][\n]"
2024-09-06 11:13:49,533 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,533 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,533 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_mutex_timedlock
2024-09-06 11:13:49,582 (Wire.java:92) DEBUG : http-outgoing-0 << "3f[\r][\n]"
2024-09-06 11:13:49,582 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_mutex_timedlock - found\n"}[\r][\n]"
2024-09-06 11:13:49,582 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,583 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,583 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_mutex_timedlock - found
2024-09-06 11:13:49,583 (Wire.java:92) DEBUG : http-outgoing-0 << "37[\r][\n]"
2024-09-06 11:13:49,583 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_mutex_clocklock\n"}[\r][\n]"
2024-09-06 11:13:49,583 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,583 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,583 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_mutex_clocklock
2024-09-06 11:13:49,627 (Wire.java:92) DEBUG : http-outgoing-0 << "3f[\r][\n]"
2024-09-06 11:13:49,627 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_mutex_clocklock - found\n"}[\r][\n]"
2024-09-06 11:13:49,627 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,627 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,627 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_mutex_clocklock - found
2024-09-06 11:13:49,627 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:49,628 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_rwlock_clockrdlock\n"}[\r][\n]"
2024-09-06 11:13:49,628 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,628 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,628 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_rwlock_clockrdlock
2024-09-06 11:13:49,716 (Wire.java:92) DEBUG : http-outgoing-0 << "42[\r][\n]"
2024-09-06 11:13:49,716 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_rwlock_clockrdlock - found\n"}[\r][\n]"
2024-09-06 11:13:49,716 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,717 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,717 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_rwlock_clockrdlock - found
2024-09-06 11:13:49,717 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:49,717 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_rwlock_clockwrlock\n"}[\r][\n]"
2024-09-06 11:13:49,717 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,717 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,717 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_rwlock_clockwrlock
2024-09-06 11:13:49,762 (Wire.java:92) DEBUG : http-outgoing-0 << "42[\r][\n]"
2024-09-06 11:13:49,762 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_rwlock_clockwrlock - found\n"}[\r][\n]"
2024-09-06 11:13:49,762 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,762 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,762 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_rwlock_clockwrlock - found
2024-09-06 11:13:49,763 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:49,763 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_cond_clockwait\n"}[\r][\n]"
2024-09-06 11:13:49,763 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,763 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,763 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_cond_clockwait
2024-09-06 11:13:49,810 (Wire.java:92) DEBUG : http-outgoing-0 << "3e[\r][\n]"
2024-09-06 11:13:49,810 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread_cond_clockwait - found\n"}[\r][\n]"
2024-09-06 11:13:49,810 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,810 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,810 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread_cond_clockwait - found
2024-09-06 11:13:49,810 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:49,810 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for _POSIX_MONOTONIC_CLOCK\n"}[\r][\n]"
2024-09-06 11:13:49,810 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,811 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,811 (ImageFromDockerfile.java:106) DEBUG : -- Looking for _POSIX_MONOTONIC_CLOCK
2024-09-06 11:13:49,853 (Wire.java:92) DEBUG : http-outgoing-0 << "3e[\r][\n]"
2024-09-06 11:13:49,853 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for _POSIX_MONOTONIC_CLOCK - found\n"}[\r][\n]"
2024-09-06 11:13:49,853 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,853 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,853 (ImageFromDockerfile.java:106) DEBUG : -- Looking for _POSIX_MONOTONIC_CLOCK - found
2024-09-06 11:13:49,853 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:13:49,853 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for vdprintf\n"}[\r][\n]"
2024-09-06 11:13:49,853 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,853 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,853 (ImageFromDockerfile.java:106) DEBUG : -- Looking for vdprintf
2024-09-06 11:13:49,907 (Wire.java:92) DEBUG : http-outgoing-0 << "30[\r][\n]"
2024-09-06 11:13:49,907 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for vdprintf - found\n"}[\r][\n]"
2024-09-06 11:13:49,907 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,907 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,907 (ImageFromDockerfile.java:106) DEBUG : -- Looking for vdprintf - found
2024-09-06 11:13:49,907 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:13:49,907 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for asprintf\n"}[\r][\n]"
2024-09-06 11:13:49,907 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,907 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,907 (ImageFromDockerfile.java:106) DEBUG : -- Looking for asprintf
2024-09-06 11:13:49,948 (Wire.java:92) DEBUG : http-outgoing-0 << "30[\r][\n]"
2024-09-06 11:13:49,948 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for asprintf - found\n"}[\r][\n]"
2024-09-06 11:13:49,948 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,948 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,948 (ImageFromDockerfile.java:106) DEBUG : -- Looking for asprintf - found
2024-09-06 11:13:49,948 (Wire.java:92) DEBUG : http-outgoing-0 << "29[\r][\n]"
2024-09-06 11:13:49,949 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for vasprintf\n"}[\r][\n]"
2024-09-06 11:13:49,949 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:49,949 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:49,949 (ImageFromDockerfile.java:106) DEBUG : -- Looking for vasprintf
2024-09-06 11:13:50,000 (Wire.java:92) DEBUG : http-outgoing-0 << "31[\r][\n]"
2024-09-06 11:13:50,000 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for vasprintf - found\n"}[\r][\n]"
2024-09-06 11:13:50,000 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,000 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,000 (ImageFromDockerfile.java:106) DEBUG : -- Looking for vasprintf - found
2024-09-06 11:13:50,000 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:13:50,000 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for getline\n"}[\r][\n]"
2024-09-06 11:13:50,000 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,000 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,000 (ImageFromDockerfile.java:106) DEBUG : -- Looking for getline
2024-09-06 11:13:50,043 (Wire.java:92) DEBUG : http-outgoing-0 << "2f[\r][\n]"
2024-09-06 11:13:50,043 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for getline - found\n"}[\r][\n]"
2024-09-06 11:13:50,043 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,044 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,044 (ImageFromDockerfile.java:106) DEBUG : -- Looking for getline - found
2024-09-06 11:13:50,044 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:13:50,044 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strndup\n"}[\r][\n]"
2024-09-06 11:13:50,044 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,044 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,044 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strndup
2024-09-06 11:13:50,087 (Wire.java:92) DEBUG : http-outgoing-0 << "2f[\r][\n]"
2024-09-06 11:13:50,087 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strndup - found\n"}[\r][\n]"
2024-09-06 11:13:50,087 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,088 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,088 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strndup - found
2024-09-06 11:13:50,088 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:13:50,088 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strnstr\n"}[\r][\n]"
2024-09-06 11:13:50,088 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,088 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,088 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strnstr
2024-09-06 11:13:50,106 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:13:50,106 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strnstr - not found\n"}[\r][\n]"
2024-09-06 11:13:50,106 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,106 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,106 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strnstr - not found
2024-09-06 11:13:50,106 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:13:50,106 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strdupa\n"}[\r][\n]"
2024-09-06 11:13:50,106 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,106 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,106 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strdupa
2024-09-06 11:13:50,147 (Wire.java:92) DEBUG : http-outgoing-0 << "2f[\r][\n]"
2024-09-06 11:13:50,147 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strdupa - found\n"}[\r][\n]"
2024-09-06 11:13:50,147 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,147 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,147 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strdupa - found
2024-09-06 11:13:50,147 (Wire.java:92) DEBUG : http-outgoing-0 << "29[\r][\n]"
2024-09-06 11:13:50,147 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strchrnul\n"}[\r][\n]"
2024-09-06 11:13:50,147 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,147 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,148 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strchrnul
2024-09-06 11:13:50,192 (Wire.java:92) DEBUG : http-outgoing-0 << "31[\r][\n]"
2024-09-06 11:13:50,192 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for strchrnul - found\n"}[\r][\n]"
2024-09-06 11:13:50,192 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,193 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,193 (ImageFromDockerfile.java:106) DEBUG : -- Looking for strchrnul - found
2024-09-06 11:13:50,193 (Wire.java:92) DEBUG : http-outgoing-0 << "34[\r][\n]"
2024-09-06 11:13:50,193 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for get_current_dir_name\n"}[\r][\n]"
2024-09-06 11:13:50,193 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,193 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,193 (ImageFromDockerfile.java:106) DEBUG : -- Looking for get_current_dir_name
2024-09-06 11:13:50,245 (Wire.java:92) DEBUG : http-outgoing-0 << "3c[\r][\n]"
2024-09-06 11:13:50,245 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for get_current_dir_name - found\n"}[\r][\n]"
2024-09-06 11:13:50,245 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,245 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,245 (ImageFromDockerfile.java:106) DEBUG : -- Looking for get_current_dir_name - found
2024-09-06 11:13:50,245 (Wire.java:92) DEBUG : http-outgoing-0 << "2b[\r][\n]"
2024-09-06 11:13:50,245 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for stdatomic.h\n"}[\r][\n]"
2024-09-06 11:13:50,245 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,245 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,245 (ImageFromDockerfile.java:106) DEBUG : -- Looking for stdatomic.h
2024-09-06 11:13:50,286 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:13:50,286 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for stdatomic.h - found\n"}[\r][\n]"
2024-09-06 11:13:50,286 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,286 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,286 (ImageFromDockerfile.java:106) DEBUG : -- Looking for stdatomic.h - found
2024-09-06 11:13:50,286 (Wire.java:92) DEBUG : http-outgoing-0 << "29[\r][\n]"
2024-09-06 11:13:50,286 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for sigaction\n"}[\r][\n]"
2024-09-06 11:13:50,286 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,286 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,286 (ImageFromDockerfile.java:106) DEBUG : -- Looking for sigaction
2024-09-06 11:13:50,335 (Wire.java:92) DEBUG : http-outgoing-0 << "31[\r][\n]"
2024-09-06 11:13:50,335 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for sigaction - found\n"}[\r][\n]"
2024-09-06 11:13:50,335 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,335 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,335 (ImageFromDockerfile.java:106) DEBUG : -- Looking for sigaction - found
2024-09-06 11:13:50,364 (Wire.java:92) DEBUG : http-outgoing-0 << "53[\r][\n]"
2024-09-06 11:13:50,364 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found CURL: /usr/lib/libcurl.so (found version \"8.9.1-DEV\")  \n"}[\r][\n]"
2024-09-06 11:13:50,364 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,364 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,364 (ImageFromDockerfile.java:106) DEBUG : -- Found CURL: /usr/lib/libcurl.so (found version "8.9.1-DEV")
2024-09-06 11:13:50,370 (Wire.java:92) DEBUG : http-outgoing-0 << "63[\r][\n]"
2024-09-06 11:13:50,370 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Could NOT find LibSystemd (missing: LIBSYSTEMD_LIBRARY LIBSYSTEMD_INCLUDE_DIR) \n"}[\r][\n]"
2024-09-06 11:13:50,370 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,371 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,371 (ImageFromDockerfile.java:106) DEBUG : -- Could NOT find LibSystemd (missing: LIBSYSTEMD_LIBRARY LIBSYSTEMD_INCLUDE_DIR)
2024-09-06 11:13:50,371 (Wire.java:92) DEBUG : http-outgoing-0 << "a7[\r][\n]"
2024-09-06 11:13:50,371 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\u001b[91mCMake Warning at CMakeLists.txt:302 (message):\n  Disabling netopeer2-server systemd support because libsystemd was not\n  found.\n\n\u001b[0m"}[\r][\n]"
2024-09-06 11:13:50,371 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,371 (Wire.java:92) DEBUG : http-outgoing-0 << "24[\r][\n]"
2024-09-06 11:13:50,371 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\u001b[91m\n\u001b[0m"}[\r][\n]"
2024-09-06 11:13:50,371 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,371 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,371 (ImageFromDockerfile.java:106) DEBUG : CMake Warning at CMakeLists.txt:302 (message):
  Disabling netopeer2-server systemd support because libsystemd was not
  found.


2024-09-06 11:13:50,371 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,371 (ImageFromDockerfile.java:106) DEBUG : 

2024-09-06 11:13:50,372 (Wire.java:92) DEBUG : http-outgoing-0 << "29[\r][\n]"
2024-09-06 11:13:50,372 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread.h\n"}[\r][\n]"
2024-09-06 11:13:50,372 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,372 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,372 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread.h
2024-09-06 11:13:50,420 (Wire.java:92) DEBUG : http-outgoing-0 << "31[\r][\n]"
2024-09-06 11:13:50,421 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for pthread.h - found\n"}[\r][\n]"
2024-09-06 11:13:50,421 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,421 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,421 (ImageFromDockerfile.java:106) DEBUG : -- Looking for pthread.h - found
2024-09-06 11:13:50,421 (Wire.java:92) DEBUG : http-outgoing-0 << "3b[\r][\n]"
2024-09-06 11:13:50,421 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n"}[\r][\n]"
2024-09-06 11:13:50,421 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,421 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,421 (ImageFromDockerfile.java:106) DEBUG : -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
2024-09-06 11:13:50,466 (Wire.java:92) DEBUG : http-outgoing-0 << "45[\r][\n]"
2024-09-06 11:13:50,466 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n"}[\r][\n]"
2024-09-06 11:13:50,466 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,466 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,466 (ImageFromDockerfile.java:106) DEBUG : -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
2024-09-06 11:13:50,466 (Wire.java:92) DEBUG : http-outgoing-0 << "29[\r][\n]"
2024-09-06 11:13:50,466 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found Threads: TRUE  \n"}[\r][\n]"
2024-09-06 11:13:50,466 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,467 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,467 (ImageFromDockerfile.java:106) DEBUG : -- Found Threads: TRUE
2024-09-06 11:13:50,468 (Wire.java:92) DEBUG : http-outgoing-0 << "8a[\r][\n]"
2024-09-06 11:13:50,468 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found LibYANG: /usr/lib/x86_64-linux-gnu/libyang.so (found suitable version \"3.3.4\", minimum required is \"3.0.0\") \n"}[\r][\n]"
2024-09-06 11:13:50,468 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,468 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,468 (ImageFromDockerfile.java:106) DEBUG : -- Found LibYANG: /usr/lib/x86_64-linux-gnu/libyang.so (found suitable version "3.3.4", minimum required is "3.0.0")
2024-09-06 11:13:50,470 (Wire.java:92) DEBUG : http-outgoing-0 << "90[\r][\n]"
2024-09-06 11:13:50,471 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Found Sysrepo: /usr/lib/x86_64-linux-gnu/libsysrepo.so (found suitable version \"7.27.11\", minimum required is \"7.27.0\") \n"}[\r][\n]"
2024-09-06 11:13:50,471 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,471 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,471 (ImageFromDockerfile.java:106) DEBUG : -- Found Sysrepo: /usr/lib/x86_64-linux-gnu/libsysrepo.so (found suitable version "7.27.11", minimum required is "7.27.0")
2024-09-06 11:13:50,474 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:13:50,474 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for eaccess\n"}[\r][\n]"
2024-09-06 11:13:50,474 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,475 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,475 (ImageFromDockerfile.java:106) DEBUG : -- Looking for eaccess
2024-09-06 11:13:50,522 (Wire.java:92) DEBUG : http-outgoing-0 << "2f[\r][\n]"
2024-09-06 11:13:50,522 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for eaccess - found\n"}[\r][\n]"
2024-09-06 11:13:50,522 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,522 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,522 (ImageFromDockerfile.java:106) DEBUG : -- Looking for eaccess - found
2024-09-06 11:13:50,522 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:13:50,522 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for mkstemps\n"}[\r][\n]"
2024-09-06 11:13:50,522 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,522 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,522 (ImageFromDockerfile.java:106) DEBUG : -- Looking for mkstemps
2024-09-06 11:13:50,566 (Wire.java:92) DEBUG : http-outgoing-0 << "30[\r][\n]"
2024-09-06 11:13:50,566 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Looking for mkstemps - found\n"}[\r][\n]"
2024-09-06 11:13:50,566 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,566 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,566 (ImageFromDockerfile.java:106) DEBUG : -- Looking for mkstemps - found
2024-09-06 11:13:50,566 (Wire.java:92) DEBUG : http-outgoing-0 << "24[\r][\n]"
2024-09-06 11:13:50,566 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Configuring done\n"}[\r][\n]"
2024-09-06 11:13:50,566 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,567 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,567 (ImageFromDockerfile.java:106) DEBUG : -- Configuring done
2024-09-06 11:13:50,595 (Wire.java:92) DEBUG : http-outgoing-0 << "23[\r][\n]"
2024-09-06 11:13:50,595 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Generating done\n"}[\r][\n]"
2024-09-06 11:13:50,595 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,595 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,595 (ImageFromDockerfile.java:106) DEBUG : -- Generating done
2024-09-06 11:13:50,596 (Wire.java:92) DEBUG : http-outgoing-0 << "4e[\r][\n]"
2024-09-06 11:13:50,596 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Build files have been written to: /opt/dev/Netopeer2/build\n"}[\r][\n]"
2024-09-06 11:13:50,596 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,596 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,596 (ImageFromDockerfile.java:106) DEBUG : -- Build files have been written to: /opt/dev/Netopeer2/build
2024-09-06 11:13:50,633 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:50,633 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  1%] Building C object tests/CMakeFiles/test_rpc.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:50,633 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,633 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,633 (ImageFromDockerfile.java:106) DEBUG : [  1%] Building C object tests/CMakeFiles/test_rpc.dir/np2_test.c.o
2024-09-06 11:13:50,636 (Wire.java:92) DEBUG : http-outgoing-0 << "51[\r][\n]"
2024-09-06 11:13:50,636 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  2%] Building C object CMakeFiles/serverobj.dir/src/common.c.o\n"}[\r][\n]"
2024-09-06 11:13:50,636 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,636 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,637 (ImageFromDockerfile.java:106) DEBUG : [  2%] Building C object CMakeFiles/serverobj.dir/src/common.c.o
2024-09-06 11:13:50,795 (Wire.java:92) DEBUG : http-outgoing-0 << "5c[\r][\n]"
2024-09-06 11:13:50,795 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  3%] Building C object tests/CMakeFiles/test_rpc.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:50,795 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,795 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,795 (ImageFromDockerfile.java:106) DEBUG : [  3%] Building C object tests/CMakeFiles/test_rpc.dir/np2_other_client.c.o
2024-09-06 11:13:50,863 (Wire.java:92) DEBUG : http-outgoing-0 << "52[\r][\n]"
2024-09-06 11:13:50,863 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  4%] Building C object CMakeFiles/serverobj.dir/src/netconf.c.o\n"}[\r][\n]"
2024-09-06 11:13:50,863 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,863 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,863 (ImageFromDockerfile.java:106) DEBUG : [  4%] Building C object CMakeFiles/serverobj.dir/src/netconf.c.o
2024-09-06 11:13:50,900 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:50,900 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  5%] Building C object tests/CMakeFiles/test_rpc.dir/test_rpc.c.o\n"}[\r][\n]"
2024-09-06 11:13:50,900 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:50,900 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:50,900 (ImageFromDockerfile.java:106) DEBUG : [  5%] Building C object tests/CMakeFiles/test_rpc.dir/test_rpc.c.o
2024-09-06 11:13:51,082 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:13:51,082 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  6%] Linking C executable test_rpc\n"}[\r][\n]"
2024-09-06 11:13:51,082 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,082 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,082 (ImageFromDockerfile.java:106) DEBUG : [  6%] Linking C executable test_rpc
2024-09-06 11:13:51,087 (Wire.java:92) DEBUG : http-outgoing-0 << "5d[\r][\n]"
2024-09-06 11:13:51,087 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  7%] Building C object CMakeFiles/serverobj.dir/src/netconf_monitoring.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,087 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,087 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,087 (ImageFromDockerfile.java:106) DEBUG : [  7%] Building C object CMakeFiles/serverobj.dir/src/netconf_monitoring.c.o
2024-09-06 11:13:51,214 (Wire.java:92) DEBUG : http-outgoing-0 << "2d[\r][\n]"
2024-09-06 11:13:51,214 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  7%] Built target test_rpc\n"}[\r][\n]"
2024-09-06 11:13:51,214 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,214 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,214 (ImageFromDockerfile.java:106) DEBUG : [  7%] Built target test_rpc
2024-09-06 11:13:51,237 (Wire.java:92) DEBUG : http-outgoing-0 << "57[\r][\n]"
2024-09-06 11:13:51,237 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  8%] Building C object CMakeFiles/serverobj.dir/src/netconf_nmda.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,237 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,237 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,237 (ImageFromDockerfile.java:106) DEBUG : [  8%] Building C object CMakeFiles/serverobj.dir/src/netconf_nmda.c.o
2024-09-06 11:13:51,242 (Wire.java:92) DEBUG : http-outgoing-0 << "55[\r][\n]"
2024-09-06 11:13:51,242 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 10%] Building C object tests/CMakeFiles/test_edit.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,242 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,242 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,242 (ImageFromDockerfile.java:106) DEBUG : [ 10%] Building C object tests/CMakeFiles/test_edit.dir/np2_test.c.o
2024-09-06 11:13:51,405 (Wire.java:92) DEBUG : http-outgoing-0 << "6b[\r][\n]"
2024-09-06 11:13:51,405 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 11%] Building C object CMakeFiles/serverobj.dir/src/netconf_subscribed_notifications.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,405 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,405 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,405 (ImageFromDockerfile.java:106) DEBUG : [ 11%] Building C object CMakeFiles/serverobj.dir/src/netconf_subscribed_notifications.c.o
2024-09-06 11:13:51,461 (Wire.java:92) DEBUG : http-outgoing-0 << "5d[\r][\n]"
2024-09-06 11:13:51,461 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 12%] Building C object tests/CMakeFiles/test_edit.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,461 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,461 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,461 (ImageFromDockerfile.java:106) DEBUG : [ 12%] Building C object tests/CMakeFiles/test_edit.dir/np2_other_client.c.o
2024-09-06 11:13:51,575 (Wire.java:92) DEBUG : http-outgoing-0 << "56[\r][\n]"
2024-09-06 11:13:51,576 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 13%] Building C object tests/CMakeFiles/test_edit.dir/test_edit.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,576 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,576 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,576 (ImageFromDockerfile.java:106) DEBUG : [ 13%] Building C object tests/CMakeFiles/test_edit.dir/test_edit.c.o
2024-09-06 11:13:51,646 (Wire.java:92) DEBUG : http-outgoing-0 << "63[\r][\n]"
2024-09-06 11:13:51,646 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 14%] Building C object CMakeFiles/serverobj.dir/src/netconf_confirmed_commit.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,646 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,646 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,646 (ImageFromDockerfile.java:106) DEBUG : [ 14%] Building C object CMakeFiles/serverobj.dir/src/netconf_confirmed_commit.c.o
2024-09-06 11:13:51,885 (Wire.java:92) DEBUG : http-outgoing-0 << "4e[\r][\n]"
2024-09-06 11:13:51,885 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 15%] Building C object CMakeFiles/serverobj.dir/src/log.c.o\n"}[\r][\n]"
2024-09-06 11:13:51,885 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,885 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,885 (ImageFromDockerfile.java:106) DEBUG : [ 15%] Building C object CMakeFiles/serverobj.dir/src/log.c.o
2024-09-06 11:13:51,947 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:51,947 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 16%] Linking C executable test_edit\n"}[\r][\n]"
2024-09-06 11:13:51,947 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:51,947 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:51,947 (ImageFromDockerfile.java:106) DEBUG : [ 16%] Linking C executable test_edit
2024-09-06 11:13:52,076 (Wire.java:92) DEBUG : http-outgoing-0 << "56[\r][\n]"
2024-09-06 11:13:52,076 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 17%] Building C object CMakeFiles/serverobj.dir/src/err_netconf.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,076 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,076 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,076 (ImageFromDockerfile.java:106) DEBUG : [ 17%] Building C object CMakeFiles/serverobj.dir/src/err_netconf.c.o
2024-09-06 11:13:52,163 (Wire.java:92) DEBUG : http-outgoing-0 << "2e[\r][\n]"
2024-09-06 11:13:52,163 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 17%] Built target test_edit\n"}[\r][\n]"
2024-09-06 11:13:52,163 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,163 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,164 (ImageFromDockerfile.java:106) DEBUG : [ 17%] Built target test_edit
2024-09-06 11:13:52,207 (Wire.java:92) DEBUG : http-outgoing-0 << "57[\r][\n]"
2024-09-06 11:13:52,207 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 18%] Building C object tests/CMakeFiles/test_filter.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,207 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,207 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,207 (ImageFromDockerfile.java:106) DEBUG : [ 18%] Building C object tests/CMakeFiles/test_filter.dir/np2_test.c.o
2024-09-06 11:13:52,273 (Wire.java:92) DEBUG : http-outgoing-0 << "2e[\r][\n]"
2024-09-06 11:13:52,273 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 18%] Built target serverobj\n"}[\r][\n]"
2024-09-06 11:13:52,273 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,273 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,273 (ImageFromDockerfile.java:106) DEBUG : [ 18%] Built target serverobj
2024-09-06 11:13:52,292 (Wire.java:92) DEBUG : http-outgoing-0 << "61[\r][\n]"
2024-09-06 11:13:52,292 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 20%] Building C object tests/CMakeFiles/test_subscribe_filter.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,292 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,292 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,292 (ImageFromDockerfile.java:106) DEBUG : [ 20%] Building C object tests/CMakeFiles/test_subscribe_filter.dir/np2_test.c.o
2024-09-06 11:13:52,416 (Wire.java:92) DEBUG : http-outgoing-0 << "5f[\r][\n]"
2024-09-06 11:13:52,416 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 21%] Building C object tests/CMakeFiles/test_filter.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,416 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,416 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,416 (ImageFromDockerfile.java:106) DEBUG : [ 21%] Building C object tests/CMakeFiles/test_filter.dir/np2_other_client.c.o
2024-09-06 11:13:52,462 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:52,462 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 22%] Building C object tests/CMakeFiles/test_subscribe_filter.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,462 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,462 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,462 (ImageFromDockerfile.java:106) DEBUG : [ 22%] Building C object tests/CMakeFiles/test_subscribe_filter.dir/np2_other_client.c.o
2024-09-06 11:13:52,487 (Wire.java:92) DEBUG : http-outgoing-0 << "5a[\r][\n]"
2024-09-06 11:13:52,487 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 23%] Building C object tests/CMakeFiles/test_filter.dir/test_filter.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,487 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,487 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,487 (ImageFromDockerfile.java:106) DEBUG : [ 23%] Building C object tests/CMakeFiles/test_filter.dir/test_filter.c.o
2024-09-06 11:13:52,569 (Wire.java:92) DEBUG : http-outgoing-0 << "6e[\r][\n]"
2024-09-06 11:13:52,569 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 24%] Building C object tests/CMakeFiles/test_subscribe_filter.dir/test_subscribe_filter.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,569 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,570 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,570 (ImageFromDockerfile.java:106) DEBUG : [ 24%] Building C object tests/CMakeFiles/test_subscribe_filter.dir/test_subscribe_filter.c.o
2024-09-06 11:13:52,722 (Wire.java:92) DEBUG : http-outgoing-0 << "38[\r][\n]"
2024-09-06 11:13:52,722 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 25%] Linking C executable test_filter\n"}[\r][\n]"
2024-09-06 11:13:52,722 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,723 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,723 (ImageFromDockerfile.java:106) DEBUG : [ 25%] Linking C executable test_filter
2024-09-06 11:13:52,741 (Wire.java:92) DEBUG : http-outgoing-0 << "42[\r][\n]"
2024-09-06 11:13:52,741 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 26%] Linking C executable test_subscribe_filter\n"}[\r][\n]"
2024-09-06 11:13:52,741 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,741 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,741 (ImageFromDockerfile.java:106) DEBUG : [ 26%] Linking C executable test_subscribe_filter
2024-09-06 11:13:52,864 (Wire.java:92) DEBUG : http-outgoing-0 << "30[\r][\n]"
2024-09-06 11:13:52,864 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 26%] Built target test_filter\n"}[\r][\n]"
2024-09-06 11:13:52,864 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,864 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,864 (ImageFromDockerfile.java:106) DEBUG : [ 26%] Built target test_filter
2024-09-06 11:13:52,869 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:52,869 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 26%] Built target test_subscribe_filter\n"}[\r][\n]"
2024-09-06 11:13:52,869 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,869 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,869 (ImageFromDockerfile.java:106) DEBUG : [ 26%] Built target test_subscribe_filter
2024-09-06 11:13:52,889 (Wire.java:92) DEBUG : http-outgoing-0 << "60[\r][\n]"
2024-09-06 11:13:52,889 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 27%] Building C object tests/CMakeFiles/test_subscribe_param.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,889 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,889 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,889 (ImageFromDockerfile.java:106) DEBUG : [ 27%] Building C object tests/CMakeFiles/test_subscribe_param.dir/np2_test.c.o
2024-09-06 11:13:52,893 (Wire.java:92) DEBUG : http-outgoing-0 << "62[\r][\n]"
2024-09-06 11:13:52,893 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 28%] Building C object tests/CMakeFiles/test_parallel_sessions.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:52,893 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:52,893 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:52,893 (ImageFromDockerfile.java:106) DEBUG : [ 28%] Building C object tests/CMakeFiles/test_parallel_sessions.dir/np2_test.c.o
2024-09-06 11:13:53,035 (Wire.java:92) DEBUG : http-outgoing-0 << "68[\r][\n]"
2024-09-06 11:13:53,035 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 30%] Building C object tests/CMakeFiles/test_subscribe_param.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,035 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,036 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,036 (ImageFromDockerfile.java:106) DEBUG : [ 30%] Building C object tests/CMakeFiles/test_subscribe_param.dir/np2_other_client.c.o
2024-09-06 11:13:53,040 (Wire.java:92) DEBUG : http-outgoing-0 << "6a[\r][\n]"
2024-09-06 11:13:53,040 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 31%] Building C object tests/CMakeFiles/test_parallel_sessions.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,040 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,040 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,040 (ImageFromDockerfile.java:106) DEBUG : [ 31%] Building C object tests/CMakeFiles/test_parallel_sessions.dir/np2_other_client.c.o
2024-09-06 11:13:53,122 (Wire.java:92) DEBUG : http-outgoing-0 << "6c[\r][\n]"
2024-09-06 11:13:53,122 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 32%] Building C object tests/CMakeFiles/test_subscribe_param.dir/test_subscribe_param.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,122 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,122 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,123 (ImageFromDockerfile.java:106) DEBUG : [ 32%] Building C object tests/CMakeFiles/test_subscribe_param.dir/test_subscribe_param.c.o
2024-09-06 11:13:53,129 (Wire.java:92) DEBUG : http-outgoing-0 << "70[\r][\n]"
2024-09-06 11:13:53,129 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 33%] Building C object tests/CMakeFiles/test_parallel_sessions.dir/test_parallel_sessions.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,129 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,129 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,129 (ImageFromDockerfile.java:106) DEBUG : [ 33%] Building C object tests/CMakeFiles/test_parallel_sessions.dir/test_parallel_sessions.c.o
2024-09-06 11:13:53,292 (Wire.java:92) DEBUG : http-outgoing-0 << "43[\r][\n]"
2024-09-06 11:13:53,292 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 34%] Linking C executable test_parallel_sessions\n"}[\r][\n]"
2024-09-06 11:13:53,293 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,293 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,293 (ImageFromDockerfile.java:106) DEBUG : [ 34%] Linking C executable test_parallel_sessions
2024-09-06 11:13:53,299 (Wire.java:92) DEBUG : http-outgoing-0 << "41[\r][\n]"
2024-09-06 11:13:53,299 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 35%] Linking C executable test_subscribe_param\n"}[\r][\n]"
2024-09-06 11:13:53,299 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,299 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,299 (ImageFromDockerfile.java:106) DEBUG : [ 35%] Linking C executable test_subscribe_param
2024-09-06 11:13:53,446 (Wire.java:92) DEBUG : http-outgoing-0 << "39[\r][\n]"
2024-09-06 11:13:53,446 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 35%] Built target test_subscribe_param\n"}[\r][\n]"
2024-09-06 11:13:53,446 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,446 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,446 (ImageFromDockerfile.java:106) DEBUG : [ 35%] Built target test_subscribe_param
2024-09-06 11:13:53,464 (Wire.java:92) DEBUG : http-outgoing-0 << "3b[\r][\n]"
2024-09-06 11:13:53,465 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 35%] Built target test_parallel_sessions\n"}[\r][\n]"
2024-09-06 11:13:53,465 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,465 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,465 (ImageFromDockerfile.java:106) DEBUG : [ 35%] Built target test_parallel_sessions
2024-09-06 11:13:53,486 (Wire.java:92) DEBUG : http-outgoing-0 << "5a[\r][\n]"
2024-09-06 11:13:53,486 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 36%] Building C object tests/CMakeFiles/test_candidate.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,486 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,486 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,486 (ImageFromDockerfile.java:106) DEBUG : [ 36%] Building C object tests/CMakeFiles/test_candidate.dir/np2_test.c.o
2024-09-06 11:13:53,494 (Wire.java:92) DEBUG : http-outgoing-0 << "5e[\r][\n]"
2024-09-06 11:13:53,494 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 37%] Building C object tests/CMakeFiles/test_with_defaults.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,494 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,494 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,494 (ImageFromDockerfile.java:106) DEBUG : [ 37%] Building C object tests/CMakeFiles/test_with_defaults.dir/np2_test.c.o
2024-09-06 11:13:53,676 (Wire.java:92) DEBUG : http-outgoing-0 << "62[\r][\n]"
2024-09-06 11:13:53,676 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 38%] Building C object tests/CMakeFiles/test_candidate.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,676 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,676 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,676 (ImageFromDockerfile.java:106) DEBUG : [ 38%] Building C object tests/CMakeFiles/test_candidate.dir/np2_other_client.c.o
2024-09-06 11:13:53,682 (Wire.java:92) DEBUG : http-outgoing-0 << "66[\r][\n]"
2024-09-06 11:13:53,683 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 40%] Building C object tests/CMakeFiles/test_with_defaults.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,683 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,683 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,683 (ImageFromDockerfile.java:106) DEBUG : [ 40%] Building C object tests/CMakeFiles/test_with_defaults.dir/np2_other_client.c.o
2024-09-06 11:13:53,762 (Wire.java:92) DEBUG : http-outgoing-0 << "60[\r][\n]"
2024-09-06 11:13:53,762 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 41%] Building C object tests/CMakeFiles/test_candidate.dir/test_candidate.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,762 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,762 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,762 (ImageFromDockerfile.java:106) DEBUG : [ 41%] Building C object tests/CMakeFiles/test_candidate.dir/test_candidate.c.o
2024-09-06 11:13:53,771 (Wire.java:92) DEBUG : http-outgoing-0 << "68[\r][\n]"
2024-09-06 11:13:53,772 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 42%] Building C object tests/CMakeFiles/test_with_defaults.dir/test_with_defaults.c.o\n"}[\r][\n]"
2024-09-06 11:13:53,772 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,772 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,772 (ImageFromDockerfile.java:106) DEBUG : [ 42%] Building C object tests/CMakeFiles/test_with_defaults.dir/test_with_defaults.c.o
2024-09-06 11:13:53,944 (Wire.java:92) DEBUG : http-outgoing-0 << "3f[\r][\n]"
2024-09-06 11:13:53,944 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 43%] Linking C executable test_with_defaults\n"}[\r][\n]"
2024-09-06 11:13:53,944 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:53,944 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:53,944 (ImageFromDockerfile.java:106) DEBUG : [ 43%] Linking C executable test_with_defaults
2024-09-06 11:13:54,023 (Wire.java:92) DEBUG : http-outgoing-0 << "3b[\r][\n]"
2024-09-06 11:13:54,023 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 44%] Linking C executable test_candidate\n"}[\r][\n]"
2024-09-06 11:13:54,023 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,023 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,023 (ImageFromDockerfile.java:106) DEBUG : [ 44%] Linking C executable test_candidate
2024-09-06 11:13:54,045 (Wire.java:92) DEBUG : http-outgoing-0 << "37[\r][\n]"
2024-09-06 11:13:54,045 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 44%] Built target test_with_defaults\n"}[\r][\n]"
2024-09-06 11:13:54,045 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,045 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,045 (ImageFromDockerfile.java:106) DEBUG : [ 44%] Built target test_with_defaults
2024-09-06 11:13:54,096 (Wire.java:92) DEBUG : http-outgoing-0 << "55[\r][\n]"
2024-09-06 11:13:54,097 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 45%] Building C object tests/CMakeFiles/test_nacm.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,097 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,097 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,097 (ImageFromDockerfile.java:106) DEBUG : [ 45%] Building C object tests/CMakeFiles/test_nacm.dir/np2_test.c.o
2024-09-06 11:13:54,176 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:13:54,176 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 45%] Built target test_candidate\n"}[\r][\n]"
2024-09-06 11:13:54,176 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,176 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,176 (ImageFromDockerfile.java:106) DEBUG : [ 45%] Built target test_candidate
2024-09-06 11:13:54,200 (Wire.java:92) DEBUG : http-outgoing-0 << "58[\r][\n]"
2024-09-06 11:13:54,200 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 46%] Building C object tests/CMakeFiles/test_sub_ntf.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,200 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,200 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,200 (ImageFromDockerfile.java:106) DEBUG : [ 46%] Building C object tests/CMakeFiles/test_sub_ntf.dir/np2_test.c.o
2024-09-06 11:13:54,220 (Wire.java:92) DEBUG : http-outgoing-0 << "5d[\r][\n]"
2024-09-06 11:13:54,220 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 47%] Building C object tests/CMakeFiles/test_nacm.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,220 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,220 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,220 (ImageFromDockerfile.java:106) DEBUG : [ 47%] Building C object tests/CMakeFiles/test_nacm.dir/np2_other_client.c.o
2024-09-06 11:13:54,322 (Wire.java:92) DEBUG : http-outgoing-0 << "56[\r][\n]"
2024-09-06 11:13:54,322 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 48%] Building C object tests/CMakeFiles/test_nacm.dir/test_nacm.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,322 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,322 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,322 (ImageFromDockerfile.java:106) DEBUG : [ 48%] Building C object tests/CMakeFiles/test_nacm.dir/test_nacm.c.o
2024-09-06 11:13:54,363 (Wire.java:92) DEBUG : http-outgoing-0 << "60[\r][\n]"
2024-09-06 11:13:54,364 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 50%] Building C object tests/CMakeFiles/test_sub_ntf.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,364 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,364 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,364 (ImageFromDockerfile.java:106) DEBUG : [ 50%] Building C object tests/CMakeFiles/test_sub_ntf.dir/np2_other_client.c.o
2024-09-06 11:13:54,478 (Wire.java:92) DEBUG : http-outgoing-0 << "5c[\r][\n]"
2024-09-06 11:13:54,478 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 51%] Building C object tests/CMakeFiles/test_sub_ntf.dir/test_sub_ntf.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,478 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,478 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,478 (ImageFromDockerfile.java:106) DEBUG : [ 51%] Building C object tests/CMakeFiles/test_sub_ntf.dir/test_sub_ntf.c.o
2024-09-06 11:13:54,597 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:54,597 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 52%] Linking C executable test_nacm\n"}[\r][\n]"
2024-09-06 11:13:54,597 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,597 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,597 (ImageFromDockerfile.java:106) DEBUG : [ 52%] Linking C executable test_nacm
2024-09-06 11:13:54,672 (Wire.java:92) DEBUG : http-outgoing-0 << "39[\r][\n]"
2024-09-06 11:13:54,672 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 53%] Linking C executable test_sub_ntf\n"}[\r][\n]"
2024-09-06 11:13:54,672 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,673 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,673 (ImageFromDockerfile.java:106) DEBUG : [ 53%] Linking C executable test_sub_ntf
2024-09-06 11:13:54,694 (Wire.java:92) DEBUG : http-outgoing-0 << "2e[\r][\n]"
2024-09-06 11:13:54,694 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 53%] Built target test_nacm\n"}[\r][\n]"
2024-09-06 11:13:54,694 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,695 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,695 (ImageFromDockerfile.java:106) DEBUG : [ 53%] Built target test_nacm
2024-09-06 11:13:54,752 (Wire.java:92) DEBUG : http-outgoing-0 << "61[\r][\n]"
2024-09-06 11:13:54,752 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 54%] Building C object tests/CMakeFiles/test_sub_ntf_advanced.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,752 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,752 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,752 (ImageFromDockerfile.java:106) DEBUG : [ 54%] Building C object tests/CMakeFiles/test_sub_ntf_advanced.dir/np2_test.c.o
2024-09-06 11:13:54,816 (Wire.java:92) DEBUG : http-outgoing-0 << "31[\r][\n]"
2024-09-06 11:13:54,817 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 54%] Built target test_sub_ntf\n"}[\r][\n]"
2024-09-06 11:13:54,817 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,817 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,817 (ImageFromDockerfile.java:106) DEBUG : [ 54%] Built target test_sub_ntf
2024-09-06 11:13:54,851 (Wire.java:92) DEBUG : http-outgoing-0 << "5f[\r][\n]"
2024-09-06 11:13:54,851 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 55%] Building C object tests/CMakeFiles/test_sub_ntf_filter.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,851 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,852 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,852 (ImageFromDockerfile.java:106) DEBUG : [ 55%] Building C object tests/CMakeFiles/test_sub_ntf_filter.dir/np2_test.c.o
2024-09-06 11:13:54,856 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:54,856 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 56%] Building C object tests/CMakeFiles/test_sub_ntf_advanced.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,856 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,856 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,856 (ImageFromDockerfile.java:106) DEBUG : [ 56%] Building C object tests/CMakeFiles/test_sub_ntf_advanced.dir/np2_other_client.c.o
2024-09-06 11:13:54,956 (Wire.java:92) DEBUG : http-outgoing-0 << "6e[\r][\n]"
2024-09-06 11:13:54,956 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 57%] Building C object tests/CMakeFiles/test_sub_ntf_advanced.dir/test_sub_ntf_advanced.c.o\n"}[\r][\n]"
2024-09-06 11:13:54,956 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:54,956 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:54,956 (ImageFromDockerfile.java:106) DEBUG : [ 57%] Building C object tests/CMakeFiles/test_sub_ntf_advanced.dir/test_sub_ntf_advanced.c.o
2024-09-06 11:13:55,011 (Wire.java:92) DEBUG : http-outgoing-0 << "67[\r][\n]"
2024-09-06 11:13:55,011 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 58%] Building C object tests/CMakeFiles/test_sub_ntf_filter.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,011 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,011 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,011 (ImageFromDockerfile.java:106) DEBUG : [ 58%] Building C object tests/CMakeFiles/test_sub_ntf_filter.dir/np2_other_client.c.o
2024-09-06 11:13:55,099 (Wire.java:92) DEBUG : http-outgoing-0 << "6a[\r][\n]"
2024-09-06 11:13:55,099 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 60%] Building C object tests/CMakeFiles/test_sub_ntf_filter.dir/test_sub_ntf_filter.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,099 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,099 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,099 (ImageFromDockerfile.java:106) DEBUG : [ 60%] Building C object tests/CMakeFiles/test_sub_ntf_filter.dir/test_sub_ntf_filter.c.o
2024-09-06 11:13:55,244 (Wire.java:92) DEBUG : http-outgoing-0 << "42[\r][\n]"
2024-09-06 11:13:55,245 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 61%] Linking C executable test_sub_ntf_advanced\n"}[\r][\n]"
2024-09-06 11:13:55,245 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,245 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,245 (ImageFromDockerfile.java:106) DEBUG : [ 61%] Linking C executable test_sub_ntf_advanced
2024-09-06 11:13:55,317 (Wire.java:92) DEBUG : http-outgoing-0 << "40[\r][\n]"
2024-09-06 11:13:55,317 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 62%] Linking C executable test_sub_ntf_filter\n"}[\r][\n]"
2024-09-06 11:13:55,317 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,317 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,317 (ImageFromDockerfile.java:106) DEBUG : [ 62%] Linking C executable test_sub_ntf_filter
2024-09-06 11:13:55,391 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:55,391 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 62%] Built target test_sub_ntf_advanced\n"}[\r][\n]"
2024-09-06 11:13:55,391 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,391 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,391 (ImageFromDockerfile.java:106) DEBUG : [ 62%] Built target test_sub_ntf_advanced
2024-09-06 11:13:55,426 (Wire.java:92) DEBUG : http-outgoing-0 << "56[\r][\n]"
2024-09-06 11:13:55,426 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 63%] Building C object tests/CMakeFiles/test_error.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,426 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,426 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,426 (ImageFromDockerfile.java:106) DEBUG : [ 63%] Building C object tests/CMakeFiles/test_error.dir/np2_test.c.o
2024-09-06 11:13:55,463 (Wire.java:92) DEBUG : http-outgoing-0 << "38[\r][\n]"
2024-09-06 11:13:55,464 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 63%] Built target test_sub_ntf_filter\n"}[\r][\n]"
2024-09-06 11:13:55,464 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,464 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,464 (ImageFromDockerfile.java:106) DEBUG : [ 63%] Built target test_sub_ntf_filter
2024-09-06 11:13:55,507 (Wire.java:92) DEBUG : http-outgoing-0 << "5d[\r][\n]"
2024-09-06 11:13:55,507 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 64%] Building C object tests/CMakeFiles/test_other_client.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,507 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,507 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,507 (ImageFromDockerfile.java:106) DEBUG : [ 64%] Building C object tests/CMakeFiles/test_other_client.dir/np2_test.c.o
2024-09-06 11:13:55,610 (Wire.java:92) DEBUG : http-outgoing-0 << "5e[\r][\n]"
2024-09-06 11:13:55,610 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 65%] Building C object tests/CMakeFiles/test_error.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,610 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,610 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,610 (ImageFromDockerfile.java:106) DEBUG : [ 65%] Building C object tests/CMakeFiles/test_error.dir/np2_other_client.c.o
2024-09-06 11:13:55,654 (Wire.java:92) DEBUG : http-outgoing-0 << "58[\r][\n]"
2024-09-06 11:13:55,655 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 66%] Building C object tests/CMakeFiles/test_error.dir/test_error.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,655 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,655 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,655 (ImageFromDockerfile.java:106) DEBUG : [ 66%] Building C object tests/CMakeFiles/test_error.dir/test_error.c.o
2024-09-06 11:13:55,659 (Wire.java:92) DEBUG : http-outgoing-0 << "65[\r][\n]"
2024-09-06 11:13:55,659 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 67%] Building C object tests/CMakeFiles/test_other_client.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,659 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,660 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,660 (ImageFromDockerfile.java:106) DEBUG : [ 67%] Building C object tests/CMakeFiles/test_other_client.dir/np2_other_client.c.o
2024-09-06 11:13:55,766 (Wire.java:92) DEBUG : http-outgoing-0 << "66[\r][\n]"
2024-09-06 11:13:55,766 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 68%] Building C object tests/CMakeFiles/test_other_client.dir/test_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:55,766 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,766 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,766 (ImageFromDockerfile.java:106) DEBUG : [ 68%] Building C object tests/CMakeFiles/test_other_client.dir/test_other_client.c.o
2024-09-06 11:13:55,910 (Wire.java:92) DEBUG : http-outgoing-0 << "3e[\r][\n]"
2024-09-06 11:13:55,910 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 70%] Linking C executable test_other_client\n"}[\r][\n]"
2024-09-06 11:13:55,911 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,911 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,911 (ImageFromDockerfile.java:106) DEBUG : [ 70%] Linking C executable test_other_client
2024-09-06 11:13:55,965 (Wire.java:92) DEBUG : http-outgoing-0 << "37[\r][\n]"
2024-09-06 11:13:55,965 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 71%] Linking C executable test_error\n"}[\r][\n]"
2024-09-06 11:13:55,965 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:55,965 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:55,965 (ImageFromDockerfile.java:106) DEBUG : [ 71%] Linking C executable test_error
2024-09-06 11:13:56,036 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:56,036 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 71%] Built target test_other_client\n"}[\r][\n]"
2024-09-06 11:13:56,036 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,036 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,036 (ImageFromDockerfile.java:106) DEBUG : [ 71%] Built target test_other_client
2024-09-06 11:13:56,106 (Wire.java:92) DEBUG : http-outgoing-0 << "5a[\r][\n]"
2024-09-06 11:13:56,106 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 72%] Building C object tests/CMakeFiles/test_yang_push.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,106 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,106 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,106 (ImageFromDockerfile.java:106) DEBUG : [ 72%] Building C object tests/CMakeFiles/test_yang_push.dir/np2_test.c.o
2024-09-06 11:13:56,149 (Wire.java:92) DEBUG : http-outgoing-0 << "2f[\r][\n]"
2024-09-06 11:13:56,149 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 72%] Built target test_error\n"}[\r][\n]"
2024-09-06 11:13:56,149 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,149 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,149 (ImageFromDockerfile.java:106) DEBUG : [ 72%] Built target test_error
2024-09-06 11:13:56,185 (Wire.java:92) DEBUG : http-outgoing-0 << "63[\r][\n]"
2024-09-06 11:13:56,185 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 73%] Building C object tests/CMakeFiles/test_yang_push_advanced.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,185 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,185 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,185 (ImageFromDockerfile.java:106) DEBUG : [ 73%] Building C object tests/CMakeFiles/test_yang_push_advanced.dir/np2_test.c.o
2024-09-06 11:13:56,255 (Wire.java:92) DEBUG : http-outgoing-0 << "62[\r][\n]"
2024-09-06 11:13:56,255 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 74%] Building C object tests/CMakeFiles/test_yang_push.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,255 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,256 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,256 (ImageFromDockerfile.java:106) DEBUG : [ 74%] Building C object tests/CMakeFiles/test_yang_push.dir/np2_other_client.c.o
2024-09-06 11:13:56,339 (Wire.java:92) DEBUG : http-outgoing-0 << "60[\r][\n]"
2024-09-06 11:13:56,339 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 75%] Building C object tests/CMakeFiles/test_yang_push.dir/test_yang_push.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,339 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,339 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,339 (ImageFromDockerfile.java:106) DEBUG : [ 75%] Building C object tests/CMakeFiles/test_yang_push.dir/test_yang_push.c.o
2024-09-06 11:13:56,344 (Wire.java:92) DEBUG : http-outgoing-0 << "6b[\r][\n]"
2024-09-06 11:13:56,344 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 76%] Building C object tests/CMakeFiles/test_yang_push_advanced.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,344 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,344 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,344 (ImageFromDockerfile.java:106) DEBUG : [ 76%] Building C object tests/CMakeFiles/test_yang_push_advanced.dir/np2_other_client.c.o
2024-09-06 11:13:56,408 (Wire.java:92) DEBUG : http-outgoing-0 << "72[\r][\n]"
2024-09-06 11:13:56,408 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 77%] Building C object tests/CMakeFiles/test_yang_push_advanced.dir/test_yang_push_advanced.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,408 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,409 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,409 (ImageFromDockerfile.java:106) DEBUG : [ 77%] Building C object tests/CMakeFiles/test_yang_push_advanced.dir/test_yang_push_advanced.c.o
2024-09-06 11:13:56,645 (Wire.java:92) DEBUG : http-outgoing-0 << "3b[\r][\n]"
2024-09-06 11:13:56,645 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 78%] Linking C executable test_yang_push\n"}[\r][\n]"
2024-09-06 11:13:56,646 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,646 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,646 (ImageFromDockerfile.java:106) DEBUG : [ 78%] Linking C executable test_yang_push
2024-09-06 11:13:56,658 (Wire.java:92) DEBUG : http-outgoing-0 << "44[\r][\n]"
2024-09-06 11:13:56,658 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 80%] Linking C executable test_yang_push_advanced\n"}[\r][\n]"
2024-09-06 11:13:56,658 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,658 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,658 (ImageFromDockerfile.java:106) DEBUG : [ 80%] Linking C executable test_yang_push_advanced
2024-09-06 11:13:56,816 (Wire.java:92) DEBUG : http-outgoing-0 << "3c[\r][\n]"
2024-09-06 11:13:56,816 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 80%] Built target test_yang_push_advanced\n"}[\r][\n]"
2024-09-06 11:13:56,816 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,816 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,816 (ImageFromDockerfile.java:106) DEBUG : [ 80%] Built target test_yang_push_advanced
2024-09-06 11:13:56,822 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:13:56,822 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 80%] Built target test_yang_push\n"}[\r][\n]"
2024-09-06 11:13:56,822 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,822 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,822 (ImageFromDockerfile.java:106) DEBUG : [ 80%] Built target test_yang_push
2024-09-06 11:13:56,847 (Wire.java:92) DEBUG : http-outgoing-0 << "61[\r][\n]"
2024-09-06 11:13:56,848 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 81%] Building C object tests/CMakeFiles/test_confirmed_commit.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,848 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,848 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,848 (ImageFromDockerfile.java:106) DEBUG : [ 81%] Building C object tests/CMakeFiles/test_confirmed_commit.dir/np2_test.c.o
2024-09-06 11:13:56,853 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:56,853 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 82%] Building C object tests/CMakeFiles/test_url.dir/np2_test.c.o\n"}[\r][\n]"
2024-09-06 11:13:56,853 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:56,853 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:56,853 (ImageFromDockerfile.java:106) DEBUG : [ 82%] Building C object tests/CMakeFiles/test_url.dir/np2_test.c.o
2024-09-06 11:13:57,015 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:57,015 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 83%] Building C object tests/CMakeFiles/test_confirmed_commit.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:57,015 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,015 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,015 (ImageFromDockerfile.java:106) DEBUG : [ 83%] Building C object tests/CMakeFiles/test_confirmed_commit.dir/np2_other_client.c.o
2024-09-06 11:13:57,028 (Wire.java:92) DEBUG : http-outgoing-0 << "5c[\r][\n]"
2024-09-06 11:13:57,028 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 84%] Building C object tests/CMakeFiles/test_url.dir/np2_other_client.c.o\n"}[\r][\n]"
2024-09-06 11:13:57,028 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,028 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,028 (ImageFromDockerfile.java:106) DEBUG : [ 84%] Building C object tests/CMakeFiles/test_url.dir/np2_other_client.c.o
2024-09-06 11:13:57,075 (Wire.java:92) DEBUG : http-outgoing-0 << "6e[\r][\n]"
2024-09-06 11:13:57,075 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 85%] Building C object tests/CMakeFiles/test_confirmed_commit.dir/test_confirmed_commit.c.o\n"}[\r][\n]"
2024-09-06 11:13:57,075 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,075 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,075 (ImageFromDockerfile.java:106) DEBUG : [ 85%] Building C object tests/CMakeFiles/test_confirmed_commit.dir/test_confirmed_commit.c.o
2024-09-06 11:13:57,148 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:57,148 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 86%] Building C object tests/CMakeFiles/test_url.dir/test_url.c.o\n"}[\r][\n]"
2024-09-06 11:13:57,148 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,149 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,149 (ImageFromDockerfile.java:106) DEBUG : [ 86%] Building C object tests/CMakeFiles/test_url.dir/test_url.c.o
2024-09-06 11:13:57,304 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:13:57,305 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 87%] Linking C executable test_url\n"}[\r][\n]"
2024-09-06 11:13:57,305 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,305 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,305 (ImageFromDockerfile.java:106) DEBUG : [ 87%] Linking C executable test_url
2024-09-06 11:13:57,420 (Wire.java:92) DEBUG : http-outgoing-0 << "2d[\r][\n]"
2024-09-06 11:13:57,420 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 87%] Built target test_url\n"}[\r][\n]"
2024-09-06 11:13:57,420 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,420 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,420 (ImageFromDockerfile.java:106) DEBUG : [ 87%] Built target test_url
2024-09-06 11:13:57,461 (Wire.java:92) DEBUG : http-outgoing-0 << "53[\r][\n]"
2024-09-06 11:13:57,461 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 88%] Building C object cli/CMakeFiles/netopeer2-cli.dir/main.c.o\n"}[\r][\n]"
2024-09-06 11:13:57,461 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,461 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,461 (ImageFromDockerfile.java:106) DEBUG : [ 88%] Building C object cli/CMakeFiles/netopeer2-cli.dir/main.c.o
2024-09-06 11:13:57,524 (Wire.java:92) DEBUG : http-outgoing-0 << "42[\r][\n]"
2024-09-06 11:13:57,524 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 90%] Linking C executable test_confirmed_commit\n"}[\r][\n]"
2024-09-06 11:13:57,524 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,525 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,525 (ImageFromDockerfile.java:106) DEBUG : [ 90%] Linking C executable test_confirmed_commit
2024-09-06 11:13:57,600 (Wire.java:92) DEBUG : http-outgoing-0 << "57[\r][\n]"
2024-09-06 11:13:57,600 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 91%] Building C object cli/CMakeFiles/netopeer2-cli.dir/commands.c.o\n"}[\r][\n]"
2024-09-06 11:13:57,600 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,600 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,600 (ImageFromDockerfile.java:106) DEBUG : [ 91%] Building C object cli/CMakeFiles/netopeer2-cli.dir/commands.c.o
2024-09-06 11:13:57,683 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:57,683 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 91%] Built target test_confirmed_commit\n"}[\r][\n]"
2024-09-06 11:13:57,683 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,683 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,683 (ImageFromDockerfile.java:106) DEBUG : [ 91%] Built target test_confirmed_commit
2024-09-06 11:13:57,723 (Wire.java:92) DEBUG : http-outgoing-0 << "56[\r][\n]"
2024-09-06 11:13:57,723 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 92%] Building C object CMakeFiles/netopeer2-server.dir/src/main.c.o\n"}[\r][\n]"
2024-09-06 11:13:57,723 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:57,724 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:57,724 (ImageFromDockerfile.java:106) DEBUG : [ 92%] Building C object CMakeFiles/netopeer2-server.dir/src/main.c.o
2024-09-06 11:13:58,004 (Wire.java:92) DEBUG : http-outgoing-0 << "5b[\r][\n]"
2024-09-06 11:13:58,004 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 93%] Building C object CMakeFiles/netopeer2-server.dir/compat/compat.c.o\n"}[\r][\n]"
2024-09-06 11:13:58,004 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,004 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,004 (ImageFromDockerfile.java:106) DEBUG : [ 93%] Building C object CMakeFiles/netopeer2-server.dir/compat/compat.c.o
2024-09-06 11:13:58,146 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:13:58,146 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 94%] Linking C executable netopeer2-server\n"}[\r][\n]"
2024-09-06 11:13:58,146 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,146 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,146 (ImageFromDockerfile.java:106) DEBUG : [ 94%] Linking C executable netopeer2-server
2024-09-06 11:13:58,287 (Wire.java:92) DEBUG : http-outgoing-0 << "59[\r][\n]"
2024-09-06 11:13:58,287 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 95%] Building C object cli/CMakeFiles/netopeer2-cli.dir/completion.c.o\n"}[\r][\n]"
2024-09-06 11:13:58,287 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,287 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,287 (ImageFromDockerfile.java:106) DEBUG : [ 95%] Building C object cli/CMakeFiles/netopeer2-cli.dir/completion.c.o
2024-09-06 11:13:58,300 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:13:58,300 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 95%] Built target netopeer2-server\n"}[\r][\n]"
2024-09-06 11:13:58,300 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,300 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,300 (ImageFromDockerfile.java:106) DEBUG : [ 95%] Built target netopeer2-server
2024-09-06 11:13:58,324 (Wire.java:92) DEBUG : http-outgoing-0 << "5c[\r][\n]"
2024-09-06 11:13:58,324 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 96%] Building C object cli/CMakeFiles/netopeer2-cli.dir/configuration.c.o\n"}[\r][\n]"
2024-09-06 11:13:58,324 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,324 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,324 (ImageFromDockerfile.java:106) DEBUG : [ 96%] Building C object cli/CMakeFiles/netopeer2-cli.dir/configuration.c.o
2024-09-06 11:13:58,438 (Wire.java:92) DEBUG : http-outgoing-0 << "62[\r][\n]"
2024-09-06 11:13:58,438 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 97%] Building C object cli/CMakeFiles/netopeer2-cli.dir/linenoise/linenoise.c.o\n"}[\r][\n]"
2024-09-06 11:13:58,438 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,438 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,438 (ImageFromDockerfile.java:106) DEBUG : [ 97%] Building C object cli/CMakeFiles/netopeer2-cli.dir/linenoise/linenoise.c.o
2024-09-06 11:13:58,443 (Wire.java:92) DEBUG : http-outgoing-0 << "5f[\r][\n]"
2024-09-06 11:13:58,443 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 98%] Building C object cli/CMakeFiles/netopeer2-cli.dir/__/compat/compat.c.o\n"}[\r][\n]"
2024-09-06 11:13:58,443 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,444 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,444 (ImageFromDockerfile.java:106) DEBUG : [ 98%] Building C object cli/CMakeFiles/netopeer2-cli.dir/__/compat/compat.c.o
2024-09-06 11:13:58,544 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:13:58,545 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[100%] Linking C executable ../netopeer2-cli\n"}[\r][\n]"
2024-09-06 11:13:58,545 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,545 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,545 (ImageFromDockerfile.java:106) DEBUG : [100%] Linking C executable ../netopeer2-cli
2024-09-06 11:13:58,624 (Wire.java:92) DEBUG : http-outgoing-0 << "32[\r][\n]"
2024-09-06 11:13:58,624 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[100%] Built target netopeer2-cli\n"}[\r][\n]"
2024-09-06 11:13:58,624 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,624 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,624 (ImageFromDockerfile.java:106) DEBUG : [100%] Built target netopeer2-cli
2024-09-06 11:13:58,660 (Wire.java:92) DEBUG : http-outgoing-0 << "50[\r][\n]"
2024-09-06 11:13:58,660 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target serverobj\n"}[\r][\n]"
2024-09-06 11:13:58,660 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,660 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,660 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target serverobj
2024-09-06 11:13:58,670 (Wire.java:92) DEBUG : http-outgoing-0 << "2e[\r][\n]"
2024-09-06 11:13:58,670 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[  8%] Built target serverobj\n"}[\r][\n]"
2024-09-06 11:13:58,670 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,670 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,670 (ImageFromDockerfile.java:106) DEBUG : [  8%] Built target serverobj
2024-09-06 11:13:58,680 (Wire.java:92) DEBUG : http-outgoing-0 << "57[\r][\n]"
2024-09-06 11:13:58,680 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target netopeer2-server\n"}[\r][\n]"
2024-09-06 11:13:58,680 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,680 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,680 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target netopeer2-server
2024-09-06 11:13:58,690 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:13:58,690 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 12%] Built target netopeer2-server\n"}[\r][\n]"
2024-09-06 11:13:58,690 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,690 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,690 (ImageFromDockerfile.java:106) DEBUG : [ 12%] Built target netopeer2-server
2024-09-06 11:13:58,700 (Wire.java:92) DEBUG : http-outgoing-0 << "4f[\r][\n]"
2024-09-06 11:13:58,700 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_rpc\n"}[\r][\n]"
2024-09-06 11:13:58,700 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,700 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,700 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_rpc
2024-09-06 11:13:58,709 (Wire.java:92) DEBUG : http-outgoing-0 << "2d[\r][\n]"
2024-09-06 11:13:58,709 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 16%] Built target test_rpc\n"}[\r][\n]"
2024-09-06 11:13:58,709 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,709 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,709 (ImageFromDockerfile.java:106) DEBUG : [ 16%] Built target test_rpc
2024-09-06 11:13:58,718 (Wire.java:92) DEBUG : http-outgoing-0 << "50[\r][\n]"
2024-09-06 11:13:58,718 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_edit\n"}[\r][\n]"
2024-09-06 11:13:58,718 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,718 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,718 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_edit
2024-09-06 11:13:58,726 (Wire.java:92) DEBUG : http-outgoing-0 << "2e[\r][\n]"
2024-09-06 11:13:58,726 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 21%] Built target test_edit\n"}[\r][\n]"
2024-09-06 11:13:58,726 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,726 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,726 (ImageFromDockerfile.java:106) DEBUG : [ 21%] Built target test_edit
2024-09-06 11:13:58,737 (Wire.java:92) DEBUG : http-outgoing-0 << "52[\r][\n]"
2024-09-06 11:13:58,737 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_filter\n"}[\r][\n]"
2024-09-06 11:13:58,737 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,737 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,737 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_filter
2024-09-06 11:13:58,746 (Wire.java:92) DEBUG : http-outgoing-0 << "30[\r][\n]"
2024-09-06 11:13:58,746 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 25%] Built target test_filter\n"}[\r][\n]"
2024-09-06 11:13:58,746 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,746 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,746 (ImageFromDockerfile.java:106) DEBUG : [ 25%] Built target test_filter
2024-09-06 11:13:58,757 (Wire.java:92) DEBUG : http-outgoing-0 << "5c[\r][\n]"
2024-09-06 11:13:58,757 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_subscribe_filter\n"}[\r][\n]"
2024-09-06 11:13:58,757 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,757 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,757 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_subscribe_filter
2024-09-06 11:13:58,769 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:58,769 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 30%] Built target test_subscribe_filter\n"}[\r][\n]"
2024-09-06 11:13:58,769 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,769 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,769 (ImageFromDockerfile.java:106) DEBUG : [ 30%] Built target test_subscribe_filter
2024-09-06 11:13:58,780 (Wire.java:92) DEBUG : http-outgoing-0 << "5b[\r][\n]"
2024-09-06 11:13:58,781 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_subscribe_param\n"}[\r][\n]"
2024-09-06 11:13:58,781 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,781 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,781 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_subscribe_param
2024-09-06 11:13:58,790 (Wire.java:92) DEBUG : http-outgoing-0 << "39[\r][\n]"
2024-09-06 11:13:58,790 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 34%] Built target test_subscribe_param\n"}[\r][\n]"
2024-09-06 11:13:58,790 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,790 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,790 (ImageFromDockerfile.java:106) DEBUG : [ 34%] Built target test_subscribe_param
2024-09-06 11:13:58,801 (Wire.java:92) DEBUG : http-outgoing-0 << "5d[\r][\n]"
2024-09-06 11:13:58,801 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_parallel_sessions\n"}[\r][\n]"
2024-09-06 11:13:58,801 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,801 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,801 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_parallel_sessions
2024-09-06 11:13:58,810 (Wire.java:92) DEBUG : http-outgoing-0 << "3b[\r][\n]"
2024-09-06 11:13:58,810 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 38%] Built target test_parallel_sessions\n"}[\r][\n]"
2024-09-06 11:13:58,810 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,810 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,810 (ImageFromDockerfile.java:106) DEBUG : [ 38%] Built target test_parallel_sessions
2024-09-06 11:13:58,820 (Wire.java:92) DEBUG : http-outgoing-0 << "55[\r][\n]"
2024-09-06 11:13:58,820 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_candidate\n"}[\r][\n]"
2024-09-06 11:13:58,820 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,820 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,820 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_candidate
2024-09-06 11:13:58,829 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:13:58,829 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 43%] Built target test_candidate\n"}[\r][\n]"
2024-09-06 11:13:58,829 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,829 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,829 (ImageFromDockerfile.java:106) DEBUG : [ 43%] Built target test_candidate
2024-09-06 11:13:58,839 (Wire.java:92) DEBUG : http-outgoing-0 << "59[\r][\n]"
2024-09-06 11:13:58,839 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_with_defaults\n"}[\r][\n]"
2024-09-06 11:13:58,839 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,839 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,839 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_with_defaults
2024-09-06 11:13:58,847 (Wire.java:92) DEBUG : http-outgoing-0 << "37[\r][\n]"
2024-09-06 11:13:58,847 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 47%] Built target test_with_defaults\n"}[\r][\n]"
2024-09-06 11:13:58,847 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,848 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,848 (ImageFromDockerfile.java:106) DEBUG : [ 47%] Built target test_with_defaults
2024-09-06 11:13:58,856 (Wire.java:92) DEBUG : http-outgoing-0 << "50[\r][\n]"
2024-09-06 11:13:58,856 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_nacm\n"}[\r][\n]"
2024-09-06 11:13:58,856 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,857 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,857 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_nacm
2024-09-06 11:13:58,865 (Wire.java:92) DEBUG : http-outgoing-0 << "2e[\r][\n]"
2024-09-06 11:13:58,865 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 52%] Built target test_nacm\n"}[\r][\n]"
2024-09-06 11:13:58,865 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,865 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,865 (ImageFromDockerfile.java:106) DEBUG : [ 52%] Built target test_nacm
2024-09-06 11:13:58,874 (Wire.java:92) DEBUG : http-outgoing-0 << "53[\r][\n]"
2024-09-06 11:13:58,874 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_sub_ntf\n"}[\r][\n]"
2024-09-06 11:13:58,874 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,875 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,875 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_sub_ntf
2024-09-06 11:13:58,883 (Wire.java:92) DEBUG : http-outgoing-0 << "31[\r][\n]"
2024-09-06 11:13:58,883 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 56%] Built target test_sub_ntf\n"}[\r][\n]"
2024-09-06 11:13:58,883 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,883 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,883 (ImageFromDockerfile.java:106) DEBUG : [ 56%] Built target test_sub_ntf
2024-09-06 11:13:58,893 (Wire.java:92) DEBUG : http-outgoing-0 << "5c[\r][\n]"
2024-09-06 11:13:58,893 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_sub_ntf_advanced\n"}[\r][\n]"
2024-09-06 11:13:58,893 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,893 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,893 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_sub_ntf_advanced
2024-09-06 11:13:58,902 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:58,903 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 61%] Built target test_sub_ntf_advanced\n"}[\r][\n]"
2024-09-06 11:13:58,903 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,903 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,903 (ImageFromDockerfile.java:106) DEBUG : [ 61%] Built target test_sub_ntf_advanced
2024-09-06 11:13:58,912 (Wire.java:92) DEBUG : http-outgoing-0 << "5a[\r][\n]"
2024-09-06 11:13:58,912 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_sub_ntf_filter\n"}[\r][\n]"
2024-09-06 11:13:58,912 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,912 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,912 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_sub_ntf_filter
2024-09-06 11:13:58,920 (Wire.java:92) DEBUG : http-outgoing-0 << "38[\r][\n]"
2024-09-06 11:13:58,920 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 65%] Built target test_sub_ntf_filter\n"}[\r][\n]"
2024-09-06 11:13:58,920 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,921 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,921 (ImageFromDockerfile.java:106) DEBUG : [ 65%] Built target test_sub_ntf_filter
2024-09-06 11:13:58,932 (Wire.java:92) DEBUG : http-outgoing-0 << "51[\r][\n]"
2024-09-06 11:13:58,932 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_error\n"}[\r][\n]"
2024-09-06 11:13:58,932 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,932 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,932 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_error
2024-09-06 11:13:58,941 (Wire.java:92) DEBUG : http-outgoing-0 << "2f[\r][\n]"
2024-09-06 11:13:58,941 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 70%] Built target test_error\n"}[\r][\n]"
2024-09-06 11:13:58,941 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,941 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,941 (ImageFromDockerfile.java:106) DEBUG : [ 70%] Built target test_error
2024-09-06 11:13:58,949 (Wire.java:92) DEBUG : http-outgoing-0 << "58[\r][\n]"
2024-09-06 11:13:58,949 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_other_client\n"}[\r][\n]"
2024-09-06 11:13:58,949 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,949 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,949 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_other_client
2024-09-06 11:13:58,957 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:58,957 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 74%] Built target test_other_client\n"}[\r][\n]"
2024-09-06 11:13:58,957 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,957 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,957 (ImageFromDockerfile.java:106) DEBUG : [ 74%] Built target test_other_client
2024-09-06 11:13:58,965 (Wire.java:92) DEBUG : http-outgoing-0 << "55[\r][\n]"
2024-09-06 11:13:58,965 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_yang_push\n"}[\r][\n]"
2024-09-06 11:13:58,965 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,965 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,965 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_yang_push
2024-09-06 11:13:58,973 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:13:58,973 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 78%] Built target test_yang_push\n"}[\r][\n]"
2024-09-06 11:13:58,973 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,973 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,973 (ImageFromDockerfile.java:106) DEBUG : [ 78%] Built target test_yang_push
2024-09-06 11:13:58,981 (Wire.java:92) DEBUG : http-outgoing-0 << "5e[\r][\n]"
2024-09-06 11:13:58,981 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_yang_push_advanced\n"}[\r][\n]"
2024-09-06 11:13:58,981 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,981 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,981 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_yang_push_advanced
2024-09-06 11:13:58,988 (Wire.java:92) DEBUG : http-outgoing-0 << "3c[\r][\n]"
2024-09-06 11:13:58,988 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 83%] Built target test_yang_push_advanced\n"}[\r][\n]"
2024-09-06 11:13:58,988 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,988 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,988 (ImageFromDockerfile.java:106) DEBUG : [ 83%] Built target test_yang_push_advanced
2024-09-06 11:13:58,998 (Wire.java:92) DEBUG : http-outgoing-0 << "5c[\r][\n]"
2024-09-06 11:13:58,998 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_confirmed_commit\n"}[\r][\n]"
2024-09-06 11:13:58,998 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:58,998 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:58,998 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_confirmed_commit
2024-09-06 11:13:59,006 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:59,006 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 87%] Built target test_confirmed_commit\n"}[\r][\n]"
2024-09-06 11:13:59,006 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,006 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,006 (ImageFromDockerfile.java:106) DEBUG : [ 87%] Built target test_confirmed_commit
2024-09-06 11:13:59,014 (Wire.java:92) DEBUG : http-outgoing-0 << "4f[\r][\n]"
2024-09-06 11:13:59,014 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target test_url\n"}[\r][\n]"
2024-09-06 11:13:59,014 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,014 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,014 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target test_url
2024-09-06 11:13:59,021 (Wire.java:92) DEBUG : http-outgoing-0 << "2d[\r][\n]"
2024-09-06 11:13:59,021 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[ 92%] Built target test_url\n"}[\r][\n]"
2024-09-06 11:13:59,021 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,021 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,021 (ImageFromDockerfile.java:106) DEBUG : [ 92%] Built target test_url
2024-09-06 11:13:59,032 (Wire.java:92) DEBUG : http-outgoing-0 << "54[\r][\n]"
2024-09-06 11:13:59,032 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Consolidate compiler generated dependencies of target netopeer2-cli\n"}[\r][\n]"
2024-09-06 11:13:59,032 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,032 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,032 (ImageFromDockerfile.java:106) DEBUG : Consolidate compiler generated dependencies of target netopeer2-cli
2024-09-06 11:13:59,039 (Wire.java:92) DEBUG : http-outgoing-0 << "32[\r][\n]"
2024-09-06 11:13:59,039 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"[100%] Built target netopeer2-cli\n"}[\r][\n]"
2024-09-06 11:13:59,039 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,039 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,039 (ImageFromDockerfile.java:106) DEBUG : [100%] Built target netopeer2-cli
2024-09-06 11:13:59,052 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:13:59,052 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Install the project...\n"}[\r][\n]"
2024-09-06 11:13:59,052 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,052 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,052 (ImageFromDockerfile.java:106) DEBUG : Install the project...
2024-09-06 11:13:59,058 (Wire.java:92) DEBUG : http-outgoing-0 << "34[\r][\n]"
2024-09-06 11:13:59,058 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Install configuration: \"Debug\"\n"}[\r][\n]"
2024-09-06 11:13:59,058 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,058 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,058 (ImageFromDockerfile.java:106) DEBUG : -- Install configuration: "Debug"
2024-09-06 11:13:59,060 (Wire.java:92) DEBUG : http-outgoing-0 << "41[\r][\n]"
2024-09-06 11:13:59,060 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2\n"}[\r][\n]"
2024-09-06 11:13:59,060 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,060 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,060 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2
2024-09-06 11:13:59,060 (Wire.java:92) DEBUG : http-outgoing-0 << "59[\r][\n]"
2024-09-06 11:13:59,060 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-ip@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,060 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,060 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,060 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-ip@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,061 (Wire.java:92) DEBUG : http-outgoing-0 << "67[\r][\n]"
2024-09-06 11:13:59,061 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-network-instance@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,061 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,061 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,061 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-network-instance@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,061 (Wire.java:92) DEBUG : http-outgoing-0 << "61[\r][\n]"
2024-09-06 11:13:59,061 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-interfaces@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,061 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,061 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,062 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-interfaces@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "60[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-yang-push@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "63[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf-nmda@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "6f[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-subscribed-notifications@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "5f[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/notifications@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,062 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,062 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-yang-push@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,062 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,062 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf-nmda@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,062 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,062 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-subscribed-notifications@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,062 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,062 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/notifications@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "61[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-yang-patch@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,062 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "62[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/nc-notifications@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "62[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf-acm@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "5f[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-restconf@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "61[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-datastores@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,063 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,063 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-yang-patch@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,063 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,063 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/nc-notifications@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,063 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,063 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf-acm@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,063 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,063 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-restconf@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,063 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,063 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-datastores@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "68[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-yang-schema-mount@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "69[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf-monitoring@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,063 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,063 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,063 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-yang-schema-mount@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,063 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,064 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf-monitoring@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "5e[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf@xxxxxxxxxxxxxxx\n"}[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,064 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,064 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/yang/modules/netopeer2/ietf-netconf@xxxxxxxxxxxxxxx
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "3c[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/netopeer2/scripts\n"}[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,064 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,064 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/netopeer2/scripts
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "46[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/netopeer2/scripts/common.sh\n"}[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,064 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,064 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/netopeer2/scripts/common.sh
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "46[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/netopeer2/scripts/remove.sh\n"}[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,064 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,064 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/netopeer2/scripts/remove.sh
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "45[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/netopeer2/scripts/setup.sh\n"}[\r][\n]"
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,064 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,064 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/netopeer2/scripts/setup.sh
2024-09-06 11:13:59,064 (Wire.java:92) DEBUG : http-outgoing-0 << "4d[\r][\n]"
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/netopeer2/scripts/merge_hostkey.sh\n"}[\r][\n]"
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "4c[\r][\n]"
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/netopeer2/scripts/merge_config.sh\n"}[\r][\n]"
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,065 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,065 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/netopeer2/scripts/merge_hostkey.sh
2024-09-06 11:13:59,065 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,065 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/netopeer2/scripts/merge_config.sh
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "3a[\r][\n]"
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/sbin/netopeer2-server\n"}[\r][\n]"
2024-09-06 11:13:59,065 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,065 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,065 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/sbin/netopeer2-server
2024-09-06 11:13:59,066 (Wire.java:92) DEBUG : http-outgoing-0 << "4e[\r][\n]"
2024-09-06 11:13:59,066 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Set runtime path of \"/usr/sbin/netopeer2-server\" to \"\"\n"}[\r][\n]"
2024-09-06 11:13:59,066 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,066 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,066 (ImageFromDockerfile.java:106) DEBUG : -- Set runtime path of "/usr/sbin/netopeer2-server" to ""
2024-09-06 11:13:59,068 (Wire.java:92) DEBUG : http-outgoing-0 << "46[\r][\n]"
2024-09-06 11:13:59,068 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/man/man8/netopeer2-server.8\n"}[\r][\n]"
2024-09-06 11:13:59,068 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,068 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,068 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/man/man8/netopeer2-server.8
2024-09-06 11:13:59,068 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:13:59,068 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/etc/pam.d/netopeer2.conf\n"}[\r][\n]"
2024-09-06 11:13:59,068 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,068 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,069 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/etc/pam.d/netopeer2.conf
2024-09-06 11:13:59,069 (Wire.java:92) DEBUG : http-outgoing-0 << "44[\r][\n]"
2024-09-06 11:13:59,069 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing missing sysrepo modules (setup.sh)...\n"}[\r][\n]"
2024-09-06 11:13:59,069 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,069 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,069 (ImageFromDockerfile.java:106) DEBUG : -- Installing missing sysrepo modules (setup.sh)...
2024-09-06 11:13:59,584 (Wire.java:92) DEBUG : http-outgoing-0 << "67[\r][\n]"
2024-09-06 11:13:59,584 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Generating a new RSA host key \"genkey\" if not already added (merge_hostkey.sh)...\n"}[\r][\n]"
2024-09-06 11:13:59,584 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,585 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,585 (ImageFromDockerfile.java:106) DEBUG : -- Generating a new RSA host key "genkey" if not already added (merge_hostkey.sh)...
2024-09-06 11:13:59,779 (Wire.java:92) DEBUG : http-outgoing-0 << "65[\r][\n]"
2024-09-06 11:13:59,779 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Merging default server listen configuration if there is none (merge_config.sh)...\n"}[\r][\n]"
2024-09-06 11:13:59,779 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,779 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,779 (ImageFromDockerfile.java:106) DEBUG : -- Merging default server listen configuration if there is none (merge_config.sh)...
2024-09-06 11:13:59,891 (Wire.java:92) DEBUG : http-outgoing-0 << "36[\r][\n]"
2024-09-06 11:13:59,891 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/bin/netopeer2-cli\n"}[\r][\n]"
2024-09-06 11:13:59,891 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,891 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,891 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/bin/netopeer2-cli
2024-09-06 11:13:59,892 (Wire.java:92) DEBUG : http-outgoing-0 << "4a[\r][\n]"
2024-09-06 11:13:59,892 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Set runtime path of \"/usr/bin/netopeer2-cli\" to \"\"\n"}[\r][\n]"
2024-09-06 11:13:59,892 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,892 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,892 (ImageFromDockerfile.java:106) DEBUG : -- Set runtime path of "/usr/bin/netopeer2-cli" to ""
2024-09-06 11:13:59,892 (Wire.java:92) DEBUG : http-outgoing-0 << "43[\r][\n]"
2024-09-06 11:13:59,892 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"-- Installing: /usr/share/man/man1/netopeer2-cli.1\n"}[\r][\n]"
2024-09-06 11:13:59,892 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:13:59,892 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:13:59,892 (ImageFromDockerfile.java:106) DEBUG : -- Installing: /usr/share/man/man1/netopeer2-cli.1
2024-09-06 11:14:00,346 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:00,346 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 677e7d636f0c\n"}[\r][\n]"
2024-09-06 11:14:00,346 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,347 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,347 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 677e7d636f0c
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e ea299168ba0a\n"}[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "2a[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 18/28 : ENV EDITOR vim"}[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:00,347 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,347 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,347 (ImageFromDockerfile.java:106) DEBUG :  ---> ea299168ba0a
2024-09-06 11:14:00,347 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,347 (ImageFromDockerfile.java:106) DEBUG : Step 18/28 : ENV EDITOR vim
2024-09-06 11:14:00,347 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,347 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:00,378 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:00,378 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in dd1b8e867dc1\n"}[\r][\n]"
2024-09-06 11:14:00,378 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,378 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,378 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in dd1b8e867dc1
2024-09-06 11:14:00,407 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container dd1b8e867dc1\n"}[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,408 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,408 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container dd1b8e867dc1
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e 39f68aa0d28f\n"}[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "26[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 19/28 : EXPOSE 830"}[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:00,408 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,408 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,408 (ImageFromDockerfile.java:106) DEBUG :  ---> 39f68aa0d28f
2024-09-06 11:14:00,408 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,408 (ImageFromDockerfile.java:106) DEBUG : Step 19/28 : EXPOSE 830
2024-09-06 11:14:00,408 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,408 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:00,486 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:00,486 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 75e6cb9242f1\n"}[\r][\n]"
2024-09-06 11:14:00,486 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,486 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,486 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 75e6cb9242f1
2024-09-06 11:14:00,521 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:00,521 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 75e6cb9242f1\n"}[\r][\n]"
2024-09-06 11:14:00,521 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,521 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,521 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 75e6cb9242f1
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e d152261ab7e9\n"}[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 20/28 : EXPOSE 6513"}[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:00,522 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,522 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,522 (ImageFromDockerfile.java:106) DEBUG :  ---> d152261ab7e9
2024-09-06 11:14:00,522 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,522 (ImageFromDockerfile.java:106) DEBUG : Step 20/28 : EXPOSE 6513
2024-09-06 11:14:00,522 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,522 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:00,551 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:00,551 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 939f559067a8\n"}[\r][\n]"
2024-09-06 11:14:00,551 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,551 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,551 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 939f559067a8
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 939f559067a8\n"}[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,584 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,584 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 939f559067a8
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e 4b7ef6d604ea\n"}[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 21/28 : EXPOSE 4334"}[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:00,584 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,584 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,584 (ImageFromDockerfile.java:106) DEBUG :  ---> 4b7ef6d604ea
2024-09-06 11:14:00,585 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,585 (ImageFromDockerfile.java:106) DEBUG : Step 21/28 : EXPOSE 4334
2024-09-06 11:14:00,585 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,585 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:00,644 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:00,645 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 350ae2f66464\n"}[\r][\n]"
2024-09-06 11:14:00,645 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,645 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,645 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 350ae2f66464
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 350ae2f66464\n"}[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,677 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,677 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 350ae2f66464
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e b98786805560\n"}[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "27[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 22/28 : EXPOSE 4335"}[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:00,677 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,677 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,677 (ImageFromDockerfile.java:106) DEBUG :  ---> b98786805560
2024-09-06 11:14:00,677 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,677 (ImageFromDockerfile.java:106) DEBUG : Step 22/28 : EXPOSE 4335
2024-09-06 11:14:00,677 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,677 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:00,709 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:00,709 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in cd00227e67d8\n"}[\r][\n]"
2024-09-06 11:14:00,709 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,709 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,709 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in cd00227e67d8
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container cd00227e67d8\n"}[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,742 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,742 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container cd00227e67d8
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e f7d3aef91863\n"}[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "475[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 23/28 : ENV SSH_LISTEN_XML_CONTENT '\u003cnetconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"\u003e\u003clisten\u003e\u003cendpoints\u003e\u003cendpoint\u003e\u003cname\u003edefault-ssh\u003c/name\u003e\u003cssh\u003e\u003ctcp-server-parameters\u003e\u003clocal-address\u003e0.0.0.0\u003c/local-address\u003e\u003c/tcp-server-parameters\u003e\u003cssh-server-parameters\u003e\u003cserver-identity\u003e\u003chost-key\u003e\u003cname\u003edefault-key\u003c/name\u003e\u003cpublic-key\u003e\u003ccentral-keystore-reference\u003egenkey\u003c/central-keystore-reference\u003e\u003c/public-key\u003e\u003c/host-key\u003e\u003c/server-identity\u003e\u003cclient-authentication\u003e\u003cusers\u003e\u003cuser\u003e\u003cname\u003enetconf\u003c/name\u003e\u003ckeyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"\u003e\u003cuse-system-auth /\u003e\u003c/keyboard-interactive\u003e\u003c/user\u003e\u003c/users\u003e\u003c/client-authentication\u003e\u003c/ssh-server-parameters\u003e\u003c/ssh\u003e\u003c/endpoint\u003e\u003c/endpoints\u003e\u003c/listen\u003e\u003c/netconf-server\u003e'"}[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:00,742 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,743 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,743 (ImageFromDockerfile.java:106) DEBUG :  ---> f7d3aef91863
2024-09-06 11:14:00,743 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,743 (ImageFromDockerfile.java:106) DEBUG : Step 23/28 : ENV SSH_LISTEN_XML_CONTENT '<netconf-server xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-server"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns="urn:cesnet:libnetconf2-netconf-server"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>'
2024-09-06 11:14:00,743 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,743 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:00,775 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:00,775 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in c40438bbd485\n"}[\r][\n]"
2024-09-06 11:14:00,775 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,775 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,775 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in c40438bbd485
2024-09-06 11:14:00,807 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container c40438bbd485\n"}[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,808 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,808 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container c40438bbd485
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e 1121936447cd\n"}[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "88[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 24/28 : RUN echo $SSH_LISTEN_XML_CONTENT  |  /usr/bin/sysrepocfg --edit -d startup -f xml -m ietf-netconf-server -v2"}[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:00,808 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,808 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,808 (ImageFromDockerfile.java:106) DEBUG :  ---> 1121936447cd
2024-09-06 11:14:00,808 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,808 (ImageFromDockerfile.java:106) DEBUG : Step 24/28 : RUN echo $SSH_LISTEN_XML_CONTENT  |  /usr/bin/sysrepocfg --edit -d startup -f xml -m ietf-netconf-server -v2
2024-09-06 11:14:00,808 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,808 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:00,837 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:00,837 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 3fccc707c5d8\n"}[\r][\n]"
2024-09-06 11:14:00,837 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:00,838 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:00,838 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 3fccc707c5d8
2024-09-06 11:14:01,539 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:01,539 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 3fccc707c5d8\n"}[\r][\n]"
2024-09-06 11:14:01,539 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,540 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,540 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 3fccc707c5d8
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e b424f3715191\n"}[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "59[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 25/28 : CMD [\"/usr/sbin/netopeer2-server\", \"-d\", \"-c\", \"SSH\"]"}[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:01,540 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,540 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,540 (ImageFromDockerfile.java:106) DEBUG :  ---> b424f3715191
2024-09-06 11:14:01,540 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,540 (ImageFromDockerfile.java:106) DEBUG : Step 25/28 : CMD ["/usr/sbin/netopeer2-server", "-d", "-c", "SSH"]
2024-09-06 11:14:01,540 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,540 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:01,575 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:01,575 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 76f651c8a080\n"}[\r][\n]"
2024-09-06 11:14:01,575 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,575 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,575 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 76f651c8a080
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 76f651c8a080\n"}[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,615 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,615 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 76f651c8a080
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e a52137f427fe\n"}[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "39[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 26/28 : LABEL org.testcontainers=true"}[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:01,615 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,615 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,615 (ImageFromDockerfile.java:106) DEBUG :  ---> a52137f427fe
2024-09-06 11:14:01,615 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,615 (ImageFromDockerfile.java:106) DEBUG : Step 26/28 : LABEL org.testcontainers=true
2024-09-06 11:14:01,615 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,615 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:01,659 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:01,659 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 7fcd81c1395c\n"}[\r][\n]"
2024-09-06 11:14:01,659 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,659 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,659 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 7fcd81c1395c
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 7fcd81c1395c\n"}[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,693 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,693 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 7fcd81c1395c
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e 778d290dad95\n"}[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "3e[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 27/28 : LABEL org.testcontainers.lang=java"}[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:01,693 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,693 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,693 (ImageFromDockerfile.java:106) DEBUG :  ---> 778d290dad95
2024-09-06 11:14:01,693 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,693 (ImageFromDockerfile.java:106) DEBUG : Step 27/28 : LABEL org.testcontainers.lang=java
2024-09-06 11:14:01,693 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,693 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:01,727 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:01,727 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 08e9737d55f2\n"}[\r][\n]"
2024-09-06 11:14:01,727 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,727 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,727 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 08e9737d55f2
2024-09-06 11:14:01,754 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:01,754 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 08e9737d55f2\n"}[\r][\n]"
2024-09-06 11:14:01,754 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,755 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,755 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 08e9737d55f2
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e 2b306c370d5c\n"}[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "43[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Step 28/28 : LABEL org.testcontainers.version=1.19.0"}[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "11[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"\n"}[\r][\n]"
2024-09-06 11:14:01,755 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,755 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,755 (ImageFromDockerfile.java:106) DEBUG :  ---> 2b306c370d5c
2024-09-06 11:14:01,755 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,755 (ImageFromDockerfile.java:106) DEBUG : Step 28/28 : LABEL org.testcontainers.version=1.19.0
2024-09-06 11:14:01,755 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,755 (ImageFromDockerfile.java:106) DEBUG :
2024-09-06 11:14:01,799 (Wire.java:92) DEBUG : http-outgoing-0 << "33[\r][\n]"
2024-09-06 11:14:01,799 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e Running in 458c654a1de7\n"}[\r][\n]"
2024-09-06 11:14:01,799 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,799 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,799 (ImageFromDockerfile.java:106) DEBUG :  ---> Running in 458c654a1de7
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "3d[\r][\n]"
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Removing intermediate container 458c654a1de7\n"}[\r][\n]"
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,833 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,833 (ImageFromDockerfile.java:106) DEBUG : Removing intermediate container 458c654a1de7
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "28[\r][\n]"
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":" ---\u003e ca66231883fc\n"}[\r][\n]"
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "5a[\r][\n]"
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "{"aux":{"ID":"sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd"}}[\r][\n]"
2024-09-06 11:14:01,833 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,833 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,833 (ImageFromDockerfile.java:106) DEBUG :  ---> ca66231883fc
2024-09-06 11:14:01,834 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,834 (ImageFromDockerfile.java:106) DEBUG : null
2024-09-06 11:14:01,836 (Wire.java:92) DEBUG : http-outgoing-0 << "30[\r][\n]"
2024-09-06 11:14:01,836 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Successfully built ca66231883fc\n"}[\r][\n]"
2024-09-06 11:14:01,836 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,836 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,837 (ImageFromDockerfile.java:106) DEBUG : Successfully built ca66231883fc
2024-09-06 11:14:01,841 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:14:01,841 (Wire.java:92) DEBUG : http-outgoing-0 << "{"stream":"Successfully tagged netopeer2:latest\n"}[\r][\n]"
2024-09-06 11:14:01,841 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,841 (BuildImageResultCallback.java:34) DEBUG : BuildResponseItem()
2024-09-06 11:14:01,841 (ImageFromDockerfile.java:106) DEBUG : Successfully tagged netopeer2:latest
2024-09-06 11:14:01,842 (Wire.java:92) DEBUG : http-outgoing-0 << "0[\r][\n]"
2024-09-06 11:14:01,842 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,842 (InternalExecRuntime.java:255) DEBUG : ep-00000002: releasing valid endpoint
2024-09-06 11:14:01,842 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000002: releasing endpoint
2024-09-06 11:14:01,842 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000002: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:01,843 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000002: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:01,845 (PrefixingImageNameSubstitutor.java:31) DEBUG : No prefix is configured
2024-09-06 11:14:01,845 (ImageNameSubstitutor.java:113) DEBUG : Did not find a substitute image for netopeer2:latest (using image substitutor: DefaultImageNameSubstitutor (composite of 'ConfigurationFileImageNameSubstitutor' and 'PrefixingImageNameSubstitutor'))
2024-09-06 11:14:01,851 (AbstrDockerCmd.java:32) DEBUG : Cmd: ListImagesCmdImpl[filters=org.testcontainers.shaded.com.github.dockerjava.core.util.FiltersBuilder@0,imageNameFilter=<null>,showAll=false]
2024-09-06 11:14:01,852 (InternalHttpClient.java:172) DEBUG : ex-00000004: preparing request execution
2024-09-06 11:14:01,852 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:01,852 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:01,853 (ProtocolExec.java:161) DEBUG : ex-00000004: target auth state: UNCHALLENGED
2024-09-06 11:14:01,853 (ProtocolExec.java:167) DEBUG : ex-00000004: proxy auth state: UNCHALLENGED
2024-09-06 11:14:01,853 (ConnectExec.java:116) DEBUG : ex-00000004: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:01,853 (InternalExecRuntime.java:101) DEBUG : ex-00000004: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:01,853 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000004: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:01,853 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000004: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:01,853 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000004: acquired ep-00000003
2024-09-06 11:14:01,854 (InternalExecRuntime.java:120) DEBUG : ex-00000004: acquired endpoint ep-00000003
2024-09-06 11:14:01,854 (MainClientExec.java:102) DEBUG : ex-00000004: executing GET /v1.32/images/json HTTP/1.1
2024-09-06 11:14:01,854 (InternalExecRuntime.java:213) DEBUG : ep-00000003: start execution ex-00000004
2024-09-06 11:14:01,854 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000003: executing exchange ex-00000004 over http-outgoing-0
2024-09-06 11:14:01,854 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> GET /v1.32/images/json HTTP/1.1
2024-09-06 11:14:01,854 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> accept: application/json
2024-09-06 11:14:01,854 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:01,854 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:01,854 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:01,854 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:01,854 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "GET /v1.32/images/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:01,855 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:01 GMT[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,960 (Wire.java:92) DEBUG : http-outgoing-0 << "7633[\r][\n]"
2024-09-06 11:14:01,961 (Wire.java:106) DEBUG : http-outgoing-0 << "[{"Containers":-1,"Created":1725614041,"Id":"sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:2b306c370d5cdda9e40263a95fa326be8715d4f65e61b79c71360a874bd090ab","RepoDigests":null,"RepoTags":["netopeer2:latest"],"SharedSize":-1,"Size":1680054067,"VirtualSize":1680054067},{"Containers":-1,"Created":1725612538,"Id":"sha256:66e6133966f32340548cf0b06a367e45c95dd1ecc69f395a5b236318164db362","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:6814d591ae1af9437b9e3aa2c487e53905e2b1d0acbc119944fcb065bc970c58","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1679981655,"VirtualSize":1679981655},{"Containers":-1,"Created":1725610232,"Id":"sha256:8d92530b0d0ad497b0dd5f195aa5b06526bb80ec1c2a28332355481af0b4f7b3","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1686069810,"VirtualSize":1686069810},{"Containers":-1,"Created":1725609142,"Id":"sha256:ab6e874d7a58ffb313401cc66df2ffbcd5f9af09ae82741859ca96a830c349b0","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799476,"VirtualSize":1660799476},{"Containers":-1,"Created":1725544849,"Id":"sha256:4f3dd7211b72ef39e2df1a7894dd9ffdd30c7f926b636abc945652620ed71039","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:4710a348680031b311e6a636246b0116dbb3ea0a7d70296429402cf6b6e2afd9","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1680052733,"VirtualSize":1680052733},{"Containers":-1,"Created":1725544140,"Id":"sha256:0a377af83f03b60c466b5f2b72bf9f465206c095a0f9d46dd1ab836d8350dfd7","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:b5b2b0595648d20c8edf1cd568c142b4c5eec5d27abfedb50db0138910d3557a","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1680052697,"VirtualSize":1680052697},{"Containers":-1,"Created":1725543697,"Id":"sha256:3abb7d53a16340bc0f5948f134ccf9edb9aa408127911b3f665b674ed3e92e6f","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799489,"VirtualSize":1660799489},{"Containers":-1,"Created":1725543641,"Id":"sha256:37bee575aa6c68670c436fc6ddd8c3d1587b5d30626e7db5e77844471aa102c8","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799466,"VirtualSize":1660799466},{"Containers":-1,"Created":1725536458,"Id":"sha256:fd8f6f8317a16fa38706bf8018d135e5a7ceeee0a5494e5eba6743b0f3d7f974","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.open"
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 200 OK
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Type: application/json
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:01 GMT
2024-09-06 11:14:01,961 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Transfer-Encoding: chunked
2024-09-06 11:14:01,962 (MainClientExec.java:126) DEBUG : ex-00000004: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:01,966 (Wire.java:106) DEBUG : http-outgoing-0 << "containers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799418,"VirtualSize":1660799418},{"Containers":-1,"Created":1725536304,"Id":"sha256:64eadc1cf2e6bd71353aaf44035ad89b246d4dcba41835aa7322ab52ca103f0b","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799417,"VirtualSize":1660799417},{"Containers":-1,"Created":1725536264,"Id":"sha256:eeead4cba05cbbf2f91140bcede6cc4f10574dfd648d36b5ac87d05d3aa0cfea","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799416,"VirtualSize":1660799416},{"Containers":-1,"Created":1725535415,"Id":"sha256:a22ed72bba45b67975aaf2376d3f395b2948993ca397cf95bc751031a03649d5","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799455,"VirtualSize":1660799455},{"Containers":-1,"Created":1725535367,"Id":"sha256:1e6038b77ae5f90aeb6d91919d808912cd88e3286e846f2f63cd8ee9440b86b9","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81871bf73955700da168c437d59056f18eee3efff52a73b47ce7e6112238b470","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660799417,"VirtualSize":1660799417},{"Containers":-1,"Created":1725534913,"Id":"sha256:1aea41206a7147c897cccd70d654e4693f4c7c211c5f021e9d3a37dfb376b5f1","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:6462c5ec86adb9fc1a4298ca5d7084adc639719b48439a358b548b6b373b4eab","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1680105775,"VirtualSize":1680105775},{"Containers":-1,"Created":1725459765,"Id":"sha256:7fa3259933f0a2fc398413fb43d93152e7a66c28e728e0f4d9a138d75ef0881e","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:a5fe1ad78b23778d6b6099a6798abbec14fd6fe0fcca9a02d813e52a8ac6f565","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660866958,"VirtualSize":1660866958},{"Containers":-1,"Created":1725458608,"Id":"sha256:17f7da14988c8580fb0bfe6b101076f1a697dd7a2b3ca1a9aa1afcc03a4b40a2","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:449409ef502a722b732d0d93e78a6377faa0b03dfce641b0236aa664db67d0d7","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1678701283,"VirtualSize":1678701283},{"Containers":-1,"Created":1725454491,"Id":"sha256:64132473cbfa5ba1c9aebd4e5525d40f92c48be34c9552ae849b0749e28eef56","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1684659958,"VirtualSize":1684659958},{"Containers":-1,"Created":1725452454,"Id":"sha256:93d1e40e4a537dcc550dcfee41d72c4bcb4b35053199fd1f28f6a471872d5ac7","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:6269e3482f2590800d3d81b59a8a9bbe7ba9c40bc0f375e63a5f119555327fed","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660866854,"VirtualSize":1660866854},{"Containers":-1,"Created":1725451696,"Id":"sha256:84e7c49c9e5b786f7e06cd8a3e69eb681e68b4678cc433117012d421d08248e7","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:44b8579cad07cc58ded9479f80adcb9504028255b50eee7238febc9e7f67318e","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660866963,"VirtualSize":1660866963},{"Containers":-1,"Created":1725451654,"Id":"sha256:438f049bfc56bf86bbb827eeb90a3e7bb0b4b4f50db548763a404229143e5085","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:457e1926309d07c02e128f6935a1235ea2e46c37342fdc1036f15396fcfc131f","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660841818,"VirtualSize":1660841818},{"Containers":-1,"Created":1725450608,"Id":"sha256:a0ba005c42f26178e5589041618c5b73e5b0f684620ce971685132130b1af58f","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:e455e110e5702306614d37e11a392814f6028e62280e61cc27857e6f4dfe51b4","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660866962,"VirtualSize":1660866962},{"Containers":-1,"Created":1725449999,"Id":"sha256:5fb738315313dfe2546124cdc000ead33363c8f98670975dfa3723aecaec4014","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:52a169b08db444d54fc15b9326dcefb81d886445cc5655d621cc48b30b61916f","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1660841816,"VirtualSize":1660841816},{"Containers":-1,"Created":1725438490,"Id":"sha256:ce7244e5ee67ca2f936c3280edd9557de08eb3fef0a02ce049f7021523b23877","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:7cada4a2ef83114e4874956d64e2b4fbdb0d930010e9e50f079cdb4f651e534c","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1678646469,"VirtualSize":1678646469},{"Containers":-1,"Created":1725360945,"Id":"sha256:7dffe2c67e599bfed6a8f771847f8ee41830a01cb8e283c473baed2f46d63e6d","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:a35553e6ce10fdb5e07c30dbfe564dfe394ff3d90ea3a8f950ed25a9555a4a0e","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1680082924,"VirtualSize":1680082924},{"Containers":-1,"Created":1725266251,"Id":"sha256:66dc194af2d4565ceb0265b9dff50cf7a6790861c92c614ae2733b9b5b65d41e","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:fb6ed23a07a2ed398fa9c0362a53fd0f245e514440e1764e11fa711efa7c3f8b","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1678567473,"VirtualSize":1678567473},{"Containers":-1,"Created":1725266168,"Id":"sha256:b46b376b9835e7546a8352a00fa8715fdb34a401f6e947f96034001022e34036","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:ee857c874892906eb04173648c98dc59927ea9e297742c666e67d2b4ccc2e907","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1678567699,"VirtualSize":1678567699},{"Containers":-1,"Created":1725266137,"Id":"sha256:cff915c61e6"
2024-09-06 11:14:01,970 (Wire.java:106) DEBUG : http-outgoing-0 << "7d96e73750981035a2737f818e392bea1e0e4c8e279b9b032ea87","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:5df492d19ad4a78433a9be3f8e9d63e1f573144fad872608e9c2b9605bc0d097","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1678567699,"VirtualSize":1678567699},{"Containers":-1,"Created":1725266108,"Id":"sha256:f2e079489fe62da1d047d20128d3533fd4a4eb7ef2a3c9c29286de096642323a","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:53267b50306b4a31a3216e08fd9dacfbc20309c75a0de157229ab080075729a5","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1678567699,"VirtualSize":1678567699},{"Containers":-1,"Created":1725265083,"Id":"sha256:7527ca790028691633d21aee0bd15cebe35fa7e394a23aa0cb710ae205e8230a","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:e39055a9715ba896b4ba4c9bd70c31cf375d8a342baecd7a19a82bcb40a1fd01","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1678552529,"VirtualSize":1678552529},{"Containers":-1,"Created":1725264461,"Id":"sha256:46a42a730e04134eeda1e9b6d7540bdbd2919dafad0908fd415bd1f21fc7498d","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:81d4fd1621d0f48fb61289a40d74fac9961596a8e26c891cbf8485765235c93a","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1619328904,"VirtualSize":1619328904},{"Containers":-1,"Created":1725261726,"Id":"sha256:e3004860bd76fecc4ba7de536fd2eb734c28a17eeb14ea15b20ba0054d277799","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:8e4973c797cf5fe6478d055115570b16b3ed5a0cc397c3465cade381218376de","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1617847386,"VirtualSize":1617847386},{"Containers":-1,"Created":1725186035,"Id":"sha256:d050bb05efe432735cf90a2b876c7c278003b20597c1d5d714ccc2c2cb5d5fb0","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"sha256:9035bf1285c349255b05cdd2e74ce5657988ca82eee189a105922f379a3b9e10","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1636597362,"VirtualSize":1636597362},{"Containers":-1,"Created":1725185576,"Id":"sha256:f2ff8fe57ee6076c6a6defe91ed552e977f25ddc41697c9b32a1de3b21be8d45","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:44e212bb220d26d3a4a8c46225d24bdcaba9fcca4c18625617b7a42b6a58daa3","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1648653147,"VirtualSize":1648653147},{"Containers":-1,"Created":1725184334,"Id":"sha256:2723ce9ab380416f66a47c00fadeff1e2d51e0dec2ad18edff4c7b46117ab884","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:9463239d979bfd1af1ee0f4a067b9e5b0435dd624b3e7decdc3a04f6c052d89e","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1642729349,"VirtualSize":1642729349},{"Containers":-1,"Created":1725016617,"Id":"sha256:b42aaea8d708fa38445b88c2a13588310aedbcb254c6742ddb161d549a6e96d4","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:af102f777ae0a83f0464a746b2f444493cbba05272363bdcf1f7072b7edcc7b2","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1642729349,"VirtualSize":1642729349},{"Containers":-1,"Created":1725013581,"Id":"sha256:9bd1ce03e930c4c2d5231a17a4e2362c8b9d2d6801756e450c66e08c39dfcd35","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:0bc1de6ae15ac774f6ad52e3d4fd97d9800f4a0c25b0fdac53b8c2c7a12ae2bb","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1642729349,"VirtualSize":1642729349},{"Containers":-1,"Created":1725010641,"Id":"sha256:9cd95636905c4829f5a794083a4ad23a8d70ed68b75917127fbfa801e807b652","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:e7492fa5db6b2bc7e465f222b127d47274f6829ecfb1b362407a9cf1e9b0f579","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1642729349,"VirtualSize":1642729349},{"Containers":-1,"Created":1724998612,"Id":"sha256:10edf47532390292d200f8918988363aa1fc74a61680d5dad73be671f2a7cac6","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:a5a3d63219ce2de3193273702bbd9ff23f18c186971578db84ab0c15ab00be81","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1642729349,"VirtualSize":1642729349},{"Containers":-1,"Created":1724997453,"Id":"sha256:8caba9c4d464fd83403e6b55089fec84349befe7ab61f1cee6bb416f38b6a4dd","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"","RepoDigests":null,"RepoTags":["netopeer2-build:latest"],"SharedSize":-1,"Size":1642561401,"VirtualSize":1642561401},{"Containers":-1,"Created":1724850676,"Id":"sha256:fdc2697a6431d6af4d2e6dac9a9c153a8ff69f1957662e8a2f1dcf48f67d46dd","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:24d8fee3b6c53314e7402aefdd7df4e706ff7d219e6eaa0968e72c399e92c715","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1643673997,"VirtualSize":1643673997},{"Containers":-1,"Created":1724403342,"Id":"sha256:294db2b0467fe6013fc6726e29e693170760f2f1cee4cb7c0932fa2b2a863c26","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"18.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:69c22f254499ef5aeef985e839fd6b3fdc6347bf65ad25469504d9e67f1face0","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1172245120,"VirtualSize":1172245120},{"Containers":-1,"Created":1724400540,"Id":"sha256:cdbe6cc2629a03be675febbe60d5fb66d4a80a57b5027bd6367355ff11119807","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:316348ed034a139e085688cbb4a661051a067ad21e01fe8cd41ff49f6e9bbe56","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1643672703,"VirtualSize":1643672703},{"Containers":-1,"Created":1724249421,"Id":"sha256:cb7954bf184c1e12a3acbfe182d40946d9c9e4e4770c5c0d80b80a89a7e7095c","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image"
2024-09-06 11:14:01,973 (Wire.java:106) DEBUG : http-outgoing-0 << ".version":"22.04"},"ParentId":"","RepoDigests":["<none>@<none>"],"RepoTags":["<none>:<none>"],"SharedSize":-1,"Size":1663840968,"VirtualSize":1663840968},{"Containers":-1,"Created":1724228301,"Id":"sha256:3b1a786836f734cc46be0732af1cb8abc24fd230795e905575c610dfd6944001","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"ParentId":"sha256:dfb3fa79a4ef4646e1db5bf0bf67debbc9082a86aa7a12de0864c7e8d240298a","RepoDigests":null,"RepoTags":["netopeer2.1:latest"],"SharedSize":-1,"Size":1643014363,"VirtualSize":1643014363},{"Containers":-1,"Created":1723541244,"Id":"sha256:53a843653cbcd9e10be207e951d907dc2481d9c222de57d24cfcac32e5165188","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"ParentId":"","RepoDigests":["ubuntu@sha256:adbb90115a21969d2fe6fa7f9af4253e16d45f8d4c1e930182610c4731962658"],"RepoTags":["ubuntu:22.04"],"SharedSize":-1,"Size":77863449,"VirtualSize":77863449},{"Containers":-1,"Created":1717422229,"Id":"sha256:217ba2bc633db15c122628d87af2c5fcefa450d1cee0838a46c9336beae7934b","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"18.04"},"ParentId":"","RepoDigests":null,"RepoTags":["openssl_test:latest"],"SharedSize":-1,"Size":475276506,"VirtualSize":475276506},{"Containers":-1,"Created":1714408683,"Id":"sha256:bf3dc08bfed031182827888bb15977e316ad797ee2ccb63b4c7a57fdfe7eb31d","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"24.04"},"ParentId":"","RepoDigests":["ubuntu@sha256:3f85b7caad41a95462cf5b787d8a04604c8262cdcdf9a472b8c52ef83375fe15"],"RepoTags":["ubuntu:24.04"],"SharedSize":-1,"Size":76237470,"VirtualSize":76237470},{"Containers":-1,"Created":1704867430,"Id":"sha256:14beb975a041b03a8de155826a0bce2aff8d079f449019505e003e8dcec539e3","Labels":{"Description":"Reference ONAP JAVA 11 image based on alpine","maintainer":"ONAP Integration team, morgan.richomme@xxxxxxxxxx"},"ParentId":"","RepoDigests":["nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors.ves.vescollector@sha256:8093ef9015341f257f8e61a6116c5deebf38b3cce6342cc9535d4c030f7dce30"],"RepoTags":["nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors.ves.vescollector:1.12.4"],"SharedSize":-1,"Size":350680270,"VirtualSize":350680270},{"Containers":-1,"Created":1703169114,"Id":"sha256:71009a3edde7c6988eb3a3b51c9dc3cacc154494ca7e5e33ed567a38bf75c130","Labels":{"org.testcontainers.ryuk":"true"},"ParentId":"","RepoDigests":["testcontainers/ryuk@sha256:739f19eb83b1710f22ff452d7bec9cdd3f53d0ba5ff4096c6516a85de88eba0c"],"RepoTags":["testcontainers/ryuk:0.6.0"],"SharedSize":-1,"Size":14910170,"VirtualSize":14910170},{"Containers":-1,"Created":1693955072,"Id":"sha256:114405a05c1ea1579eada94100ea1262ec351ce96625fed47684ed05ef48f52f","Labels":null,"ParentId":"","RepoDigests":["docker@sha256:0752ca4e936da012c173c119217c0f9599b3b191c1557e53206d5d06d2627580"],"RepoTags":["docker:latest"],"SharedSize":-1,"Size":331424469,"VirtualSize":331424469},{"Containers":-1,"Created":1685439129,"Id":"sha256:f9a80a55f492e823bf5d51f1bd5f87ea3eed1cb31788686aa99a2fb61a27af6a","Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"18.04"},"ParentId":"","RepoDigests":["ubuntu@sha256:152dc042452c496007f07ca9127571cb9c29697f42acbfad72324b2bb2e43c98"],"RepoTags":["ubuntu:18.04"],"SharedSize":-1,"Size":63156473,"VirtualSize":63156473},{"Containers":-1,"Created":1684336262,"Id":"sha256:ec913eeff75a6b5ed284cf17e186213a466ec10a8f471798318ffa0813b5d828","Labels":{"org.testcontainers.ryuk":"true"},"ParentId":"","RepoDigests":["testcontainers/ryuk@sha256:533abc56c07b52a26c955d1e7ae428d810582ab01c156384ae79960eb5fa0775"],"RepoTags":["testcontainers/ryuk:0.5.1"],"SharedSize":-1,"Size":12695732,"VirtualSize":12695732},{"Containers":-1,"Created":1683221823,"Id":"sha256:9c7a54a9a43cca047013b82af109fe963fde787f63f9e016fdc3384500c2823d","Labels":null,"ParentId":"","RepoDigests":["hello-world@sha256:dcba6daec718f547568c562956fa47e1b03673dd010fe6ee58ca806767031d1c"],"RepoTags":["hello-world:latest"],"SharedSize":-1,"Size":13256,"VirtualSize":13256},{"Containers":-1,"Created":1662811774,"Id":"sha256:6f6b587bf3f46bcc71f0cd440d8083b80b88a630dc81db55a69f14a80910c086","Labels":{"org.opencontainers.image.created":"2022-09-10T12:09:30Z","org.opencontainers.image.description":"toxiproxy","org.opencontainers.image.licenses":"MIT","org.opencontainers.image.revision":"30ea6dd47f0e853dd4bdd490b003b939aaa3ed9c","org.opencontainers.image.source":"https://github.com/Shopify/toxiproxy","org.opencontainers.image.title":"toxiproxy","org.opencontainers.image.url":"https://github.com/Shopify/toxiproxy","org.opencontainers.image.version":"2.5.0"},"ParentId":"","RepoDigests":["ghcr.io/shopify/toxiproxy@sha256:927c797a2115a193ae3a527e5a36782b938419904ac6706ca0efa029ebea58cb"],"RepoTags":["ghcr.io/shopify/toxiproxy:2.5.0"],"SharedSize":-1,"Size":17838080,"VirtualSize":17838080},{"Containers":-1,"Created":1659017178,"Id":"sha256:7ac27de2f0c441174e7e12a105f876493b902ffd7bbb2a3646aa929c08cc3806","Labels":null,"ParentId":"","RepoDigests":["testcontainers/ryuk@sha256:0c8faa0a3ad1e154f9d8d5d78627b40d7359ff3f7d3f98556aa32157ad8fd924"],"RepoTags":["testcontainers/ryuk:0.3.4"],"SharedSize":-1,"Size":11975796,"VirtualSize":11975796},{"Containers":-1,"Created":1654903374,"Id":"sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227","Labels":null,"ParentId":"","RepoDigests":["testcontainers/sshd@sha256:7d6fdd0bd7e64229c9cf9feabc394a6d0a7fc15a671e84993d86fd91ed52422e"],"RepoTags":["testcontainers/sshd:1.1.0"],"SharedSize":-1,"Size":12003032,"VirtualSize":12003032},{"Containers":-1,"Created":1652924886,"Id":"sha256:97e12aea683d6c835ecdec17c0400e0b773ed5a6babf64c8b93fcbd21016694a","Labels":{"org.label-schema.build-date":"2022-05-19T01:45:11Z","org.label-schema.description":"3810","org.label-schema.license":"Apache-2.0","org.label-schema.name":"opensearch","org.label-schema.schema-version":"1.0","org.label-schema.url":"https://opensearch.org","org.label-schema.vcs-url":"https://github.com/OpenSearch","org.label-schema.vendor":"OpenSearch","org.label-schema.version":"2.0.0"},"ParentId":"","RepoDigests":["opensearchproject/opensearch@sha256:4f49474dcb7345af0afe976221c1885dce2ceb7093516538b08cdd3bdfc33f20"],"RepoTags":["opensearchproject/opensearch:2.0.0"],"SharedSize":-1,"Size":854224230,"VirtualSize":854224230},{"Containers":-1,"Created":1614958090,"Id":"sha256:d240544e0b3ca010b40762b8e0fc2299b149ffc12b1fd3cb89d5c6a7f3851997","Labels":{"io.confluent.docker":"true","io.confluent.docker.build.number":"1","io.confluent.docker.git.id":"5971a94"},"ParentId":"","RepoDigests":["nexus3.onap.org:10001/onap/dmaap/kafka111@sha256:a62d317ea3ceac1368ef01f59c3c9d24ccdceb3f7704a72c42a3fecdcd6d9c60"],"RepoTags":["nexus3.onap.org:10001/onap/dmaap/kafka111:1.0.5"],"SharedSize":-1,"Size":628858920,"VirtualSize":628858920},{"Containers":-1,"Created":1604878882,"Id":"sha256:bc2ee8a9ad555313ddfc2a7f54d9963bd207bceeb10431db50b4babbfb3f2774","Labels":null,"ParentId":"","RepoDigests":["mockserver/mockserver@sha256:c7c0dcee6fb7b0be6252977cf3a00ebf8ae2ff1179de9bf2bd5e6c92c768ea87"],"RepoTags":["mockserver/mockserver:mockserver-5.11.2"],"SharedSize":-1,"Size":215863200,"VirtualSize":215863200},{"Containers":-1,"Created":1600822259,"Id":"sha256:caa7a21ca06ea2376dc2a2b3194795def7bed7cc1a4de18feee0a706518d2c39","Labels":{"org.label-schema.build-date":"2020-09-23T00:45:33.626720Z","org.label-schema.license":"Elastic-License","org.label-schema.name":"Elasticsearch","org.label-schema.schema-version":"1.0","org.label-schema.url":"https://www.elastic.co/products/elasticsearch","org.label-schema.usage":"https://www.elastic.co/guide/en/elasticsearch/reference/index.html","org.label-schema.vcs-ref":"d34da0ea4a966c4e49417f2da2f244e3e97b4e6e","org.label-schema.vcs-url":"https://github.com/";
2024-09-06 11:14:01,975 (Wire.java:92) DEBUG : http-outgoing-0 << "elastic/elasticsearch","org.label-schema.vendor":"Elastic","org.label-schema.version":"7.9.2","org.opencontainers.image.created":"2020-09-23T00:45:33.626720Z","org.opencontainers.image.documentation":"https://www.elastic.co/guide/en/elasticsearch/reference/index.html","org.opencontainers.image.licenses":"Elastic-License","org.opencontainers.image.revision":"d34da0ea4a966c4e49417f2da2f244e3e97b4e6e","org.opencontainers.image.source":"https://github.com/elastic/elasticsearch","org.opencontainers.image.title":"Elasticsearch","org.opencontainers.image.url":"https://www.elastic.co/products/elasticsearch","org.opencontainers.image.vendor":"Elastic","org.opencontainers.image.version":"7.9.2"},"ParentId":"","RepoDigests":["docker.elastic.co/elasticsearch/elasticsearch@sha256:2be3302537236874fdeca184c78a49aed17d5aca0f8fc3f6192a80e93e817cb4","elasticsearch@sha256:e3b52403c6fb95eb4dc6092d39c187acfc38e8afd61e4d38801ae323b3eeeff3"],"RepoTags":["docker.elastic.co/elasticsearch/elasticsearch:7.9.2","elasticsearch:7.9.2"],"SharedSize":-1,"Size":762872650,"VirtualSize":762872650},{"Containers":-1,"Created":1585314400,"Id":"sha256:69da3b28b46a7bd6e83621ce549d567340954a2822d699f950df6cec5421dc37","Labels":{"io.confluent.docker":"true","io.confluent.docker.build.number":"1","io.confluent.docker.git.id":"5971a94"},"ParentId":"","RepoDigests":["nexus3.onap.org:10001/onap/dmaap/zookeeper@sha256:4fb66c74e7bd4c7b5570365e00fd76dace4c0abab423d9451bc1e282e7ed695d"],"RepoTags":["nexus3.onap.org:10001/onap/dmaap/zookeeper:6.0.3"],"SharedSize":-1,"Size":2040770485,"VirtualSize":2040770485},{"Containers":-1,"Created":1563993280,"Id":"sha256:bdaab402b2200af3743e1fde3260220350e4b886370a4deae0d7ec7c2dd451d6","Labels":{"license":"Elastic License","org.label-schema.build-date":"20190305","org.label-schema.license":"GPLv2","org.label-schema.name":"elasticsearch","org.label-schema.schema-version":"1.0","org.label-schema.url":"https://www.elastic.co/products/elasticsearch","org.label-schema.vcs-url":"https://github.com/elastic/elasticsearch","org.label-schema.vendor":"Elastic","org.label-schema.version":"7.3.0"},"ParentId":"","RepoDigests":["docker.elastic.co/elasticsearch/elasticsearch@sha256:8c7075b17918a954e34d71ab1661ea14737429426376d045a23e79c3632346ab"],"RepoTags":["docker.elastic.co/elasticsearch/elasticsearch:7.3.0"],"SharedSize":-1,"Size":805780825,"VirtualSize":805780825}][\n]";
2024-09-06 11:14:01,976 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,976 (Wire.java:92) DEBUG : http-outgoing-0 << "0[\r][\n]"
2024-09-06 11:14:01,976 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,976 (InternalExecRuntime.java:255) DEBUG : ep-00000003: releasing valid endpoint
2024-09-06 11:14:01,976 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000003: releasing endpoint
2024-09-06 11:14:01,977 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000003: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:01,977 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000003: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:01,981 (AbstractImagePullPolicy.java:22) DEBUG : netopeer2:latest is not in image name cache, updating...
2024-09-06 11:14:01,983 (AbstrDockerCmd.java:32) DEBUG : Cmd: netopeer2:latest
2024-09-06 11:14:01,985 (InternalHttpClient.java:172) DEBUG : ex-00000005: preparing request execution
2024-09-06 11:14:01,985 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:01,985 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:01,985 (ProtocolExec.java:161) DEBUG : ex-00000005: target auth state: UNCHALLENGED
2024-09-06 11:14:01,985 (ProtocolExec.java:167) DEBUG : ex-00000005: proxy auth state: UNCHALLENGED
2024-09-06 11:14:01,986 (ConnectExec.java:116) DEBUG : ex-00000005: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:01,986 (InternalExecRuntime.java:101) DEBUG : ex-00000005: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:01,986 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000005: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:01,986 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000005: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:01,986 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000005: acquired ep-00000004
2024-09-06 11:14:01,986 (InternalExecRuntime.java:120) DEBUG : ex-00000005: acquired endpoint ep-00000004
2024-09-06 11:14:01,986 (MainClientExec.java:102) DEBUG : ex-00000005: executing GET /v1.32/images/netopeer2:latest/json HTTP/1.1
2024-09-06 11:14:01,986 (InternalExecRuntime.java:213) DEBUG : ep-00000004: start execution ex-00000005
2024-09-06 11:14:01,986 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000004: executing exchange ex-00000005 over http-outgoing-0
2024-09-06 11:14:01,987 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> GET /v1.32/images/netopeer2:latest/json HTTP/1.1
2024-09-06 11:14:01,987 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> accept: application/json
2024-09-06 11:14:01,987 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:01,987 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:01,987 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:01,987 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:01,987 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "GET /v1.32/images/netopeer2:latest/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:01,987 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:02 GMT[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:01,989 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:01,990 (Wire.java:92) DEBUG : http-outgoing-0 << "1aa1[\r][\n]"
2024-09-06 11:14:01,990 (Wire.java:106) DEBUG : http-outgoing-0 << "{"Id":"sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd","RepoTags":["netopeer2:latest"],"RepoDigests":[],"Parent":"sha256:2b306c370d5cdda9e40263a95fa326be8715d4f65e61b79c71360a874bd090ab","Comment":"","Created":"2024-09-06T09:14:01.846064785Z","Container":"458c654a1de78d3544d1d8e66984dfa0ecec7f1c4bb7083ef0df7fa5982eb40b","ContainerConfig":{"Hostname":"458c654a1de7","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"4334/tcp":{},"4335/tcp":{},"6513/tcp":{},"830/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","EDITOR=vim","SSH_LISTEN_XML_CONTENT=<netconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>"],"Cmd":["/bin/sh","-c","#(nop) ","LABEL org.testcontainers.version=1.19.0"],"Image":"sha256:2b306c370d5cdda9e40263a95fa326be8715d4f65e61b79c71360a874bd090ab","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"}},"DockerVersion":"24.0.6","Author":"","Config":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"4334/tcp":{},"4335/tcp":{},"6513/tcp":{},"830/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","EDITOR=vim","SSH_LISTEN_XML_CONTENT=<netconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>"],"Cmd":["/usr/sbin/netopeer2-server","-d","-c","SSH"],"Image":"sha256:2b306c370d5cdda9e40263a95fa326be8715d4f65e61b79c71360a874bd090ab","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"}},"Architecture":"amd64","Os":"linux","Size":1680054067,"VirtualSize":1680054067,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/a1e978227683a0c74d699bb515a59555a769cfe08431429ac07b0f98fa1212db/diff:/var/lib/docker/overlay2/d81ac57fc7a5b869fe2182c21ef61d52af192008d08b565a004dbbbd355898c8/diff:/var/lib/docker/overlay2/a01fa762a3a0fc1375ef511648f07937d60e5146b3d61e9d3bbb7d7910a14fc2/diff:/var/lib/docker/overlay2/da40b919c95987f2194bcfc0c1803b933e106fe4d197b1b8b7ffadf9e4dc56e2/diff:/var/lib/docker/overlay2/8a1f527bca8deb0c5343427d0171097906522d16801a6e9b5"
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 200 OK
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Type: application/json
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:02 GMT
2024-09-06 11:14:01,990 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Transfer-Encoding: chunked
2024-09-06 11:14:01,991 (MainClientExec.java:126) DEBUG : ex-00000005: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:02,010 (Wire.java:92) DEBUG : http-outgoing-0 << "a70437473104ef0/diff:/var/lib/docker/overlay2/667c16009e95a4b7d5c3ff26f916548c75e8c65fd0d0d6a7f2177d6d598844fa/diff:/var/lib/docker/overlay2/2e44d3c7c20a9ea6c4e9c615bdac0198419be54c482ebab6a14fa51649c007ca/diff:/var/lib/docker/overlay2/a2d0b870c0f17eea14ade32620e70e1f3afef83d8493a8a242fe8879a39331a2/diff:/var/lib/docker/overlay2/5a6272e6569eafc40072e8a4d862df0e730021f273b525d9e2e76ab4e5f4f0c6/diff:/var/lib/docker/overlay2/36d11b7f08154e5bc7d4d6a33c6d2abb123dec6a9ed393efe262e72f35d78d1b/diff:/var/lib/docker/overlay2/64fd49538ce471e563fab65c353bfde207894aec03e10b2892d4570545ce7616/diff:/var/lib/docker/overlay2/ba2f7c137723b6123383558618d00df8a59ad7f75e2e905be3b0ee9d9a03e0a3/diff:/var/lib/docker/overlay2/d3f4e0a71673529fb2f7d8a989c9247be31aae483583f5a626625dc628c4e055/diff:/var/lib/docker/overlay2/529699c40f54fb41ef0b1d473e01035d586d153a4d8e80e31913cbc236fdc1ce/diff:/var/lib/docker/overlay2/32eaf33b06ade0250187a3c35d35d59ce448280a6df310cb0ee1a59dde9959b3/diff:/var/lib/docker/overlay2/a932ade4b3512afa0bf7f291816db0b963c499cfeb51ece2a303b2a1af347581/diff:/var/lib/docker/overlay2/02f89e2ac7bbc71b91b5079fed3c86920d73f2983077fead52bf50b66d4d36d4/diff","MergedDir":"/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/merged","UpperDir":"/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/diff","WorkDir":"/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:1b9b7346fee7abbc7f5538eaa23548bd05a45abe8daf6794024be0c8ad7d60bb","sha256:8c6152afb1cb0dcfa2d5940ec64f2f8064eb745fef8793e0b8380315f4e076a0","sha256:638e4e2c43bc6614cf0265773adae983a93da8b51bca44e884dcb9a89ec29070","sha256:604d593009c040cd3a79943da953c46db9db0a793d832d899cd3dacd403b3122","sha256:baf4d09f8d59ba59a78f87eb65ae7521ef6e280793c72197a85fdfb937b91d90","sha256:23794c0dc55eeb055a16f90c68a46d335ebf5980cf855626a508cc586051dc1e","sha256:9cf2b25dc07d9b811fccb0f8c0da8795efbeb2bdcaeb91bb75a40e9bd7b62518","sha256:d169159b92eb3e2d94d32f4a269bc25de7b0ef3fcd5f79ac149929e09b7b5771","sha256:61ba812a43186bab98d11018becf09df48a8745cc631b633893d6f8edbd1c51f","sha256:2edf2487eb83298e153e5c6aaca730e86f0a89ee509c0a210958a157838e6a86","sha256:7f0a18d336fdc35ef87bfd83a3aae811bebf7ebbf91582386e163494ef380125","sha256:40c89e7fb2c4113f726fe256bc996426ef25548e33e7acaec266e141a0132816","sha256:179bbe9848d57d2e614841fa8d5f7c69a145311edd08101598669614dfc63702","sha256:5f628085a938bd6902059318a458cbb66139f7002fd6a71be8ef62989ca1db0e","sha256:f7341ed803edc92853b859f11bf622f0df0e6a9079e56024f6b74ba7b92a389e","sha256:80ef1532c68a2b4e40ead20dcde300fc0581c06787315522d3211f1eba36bdf8","sha256:1a9433e7161eb1f4677e1cb3d4bfae9985a983c4ed1b2d253a2d058d9955f5d2","sha256:3a2d146f5b374e5c0d4cf5e728d8662bb753bdc871484a380a2b6250dee4bdb0"]},"Metadata":{"LastTagTime":"2024-09-06T11:14:01.870943617+02:00"}}[\n]"
2024-09-06 11:14:02,018 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:02,018 (Wire.java:92) DEBUG : http-outgoing-0 << "0[\r][\n]"
2024-09-06 11:14:02,018 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:02,018 (InternalExecRuntime.java:255) DEBUG : ep-00000004: releasing valid endpoint
2024-09-06 11:14:02,018 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000004: releasing endpoint
2024-09-06 11:14:02,018 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000004: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:02,019 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000004: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:02,024 (AbstractImagePullPolicy.java:36) DEBUG : Using locally available and not pulling image: netopeer2:latest
2024-09-06 11:14:02,024 (GenericContainer.java:343) DEBUG : Starting container: netopeer2:latest
2024-09-06 11:14:02,027 (GenericContainer.java:350) DEBUG : Trying to start container: netopeer2:latest (attempt 1/1)
2024-09-06 11:14:02,027 (GenericContainer.java:386) DEBUG : Starting container: netopeer2:latest
2024-09-06 11:14:02,029 (GenericContainer.java:388)  INFO : Creating container for image: netopeer2:latest
2024-09-06 11:14:02,039 (RegistryAuthLocator.java:121) DEBUG : Looking up auth config for image: netopeer2:latest at registry: https://index.docker.io/v1/
2024-09-06 11:14:02,040 (RegistryAuthLocator.java:177) DEBUG : RegistryAuthLocator has configFile: C:\Users\eraonel\.docker\config.json (exists) configEnv: DOCKER_AUTH_CONFIG (does not exist) and commandPathPrefix:
2024-09-06 11:14:02,040 (RegistryAuthLocator.java:190) DEBUG : RegistryAuthLocator reading from configFile: C:\Users\eraonel\.docker\config.json
2024-09-06 11:14:02,041 (RegistryAuthLocator.java:144) DEBUG : registryName [https://index.docker.io/v1/] for dockerImageName [netopeer2:latest]
2024-09-06 11:14:02,042 (RegistryAuthLocator.java:278) DEBUG : Executing docker credential provider: docker-credential-wincred to locate auth config for: https://index.docker.io/v1/
2024-09-06 11:14:02,056 (MessageLoggers.java:42) DEBUG : Executing [cmd, /c, docker-credential-wincred, get].
2024-09-06 11:14:02,132 (MessageLoggers.java:42) DEBUG : Started Process[pid=7432, exitValue="not exited"]
2024-09-06 11:14:02,400 (MessageLoggers.java:42) DEBUG : Process[pid=7432, exitValue=0] stopped with exit code 0
2024-09-06 11:14:02,405 (RegistryAuthLocator.java:317) DEBUG : Credential helper/store provided auth config for: https://index.docker.io/v1/
2024-09-06 11:14:02,408 (RegistryAuthLocator.java:155) DEBUG : found creds store auth config [AuthConfig{username=eraonel, password=hidden non-blank value, auth=blank, email=null, registryAddress=https://index.docker.io/v1/, registryToken=blank}]
2024-09-06 11:14:02,408 (RegistryAuthLocator.java:129) DEBUG : Cached auth found: [AuthConfig{username=eraonel, password=hidden non-blank value, auth=blank, email=null, registryAddress=https://index.docker.io/v1/, registryToken=blank}]
2024-09-06 11:14:02,408 (AuthDelegatingDockerClientConfig.java:47) DEBUG : Effective auth config [AuthConfig{username=eraonel, password=hidden non-blank value, auth=blank, email=null, registryAddress=https://index.docker.io/v1/, registryToken=blank}]
2024-09-06 11:14:02,420 (PrefixingImageNameSubstitutor.java:31) DEBUG : No prefix is configured
2024-09-06 11:14:02,420 (ImageNameSubstitutor.java:113) DEBUG : Did not find a substitute image for testcontainers/sshd:1.1.0 (using image substitutor: DefaultImageNameSubstitutor (composite of 'ConfigurationFileImageNameSubstitutor' and 'PrefixingImageNameSubstitutor'))
2024-09-06 11:14:02,420 (AbstractImagePullPolicy.java:36) DEBUG : Using locally available and not pulling image: testcontainers/sshd:1.1.0
2024-09-06 11:14:02,420 (GenericContainer.java:343) DEBUG : Starting container: testcontainers/sshd:1.1.0
2024-09-06 11:14:02,420 (GenericContainer.java:350) DEBUG : Trying to start container: testcontainers/sshd:1.1.0 (attempt 1/1)
2024-09-06 11:14:02,420 (GenericContainer.java:386) DEBUG : Starting container: testcontainers/sshd:1.1.0
2024-09-06 11:14:02,420 (GenericContainer.java:388)  INFO : Creating container for image: testcontainers/sshd:1.1.0
2024-09-06 11:14:02,421 (RegistryAuthLocator.java:121) DEBUG : Looking up auth config for image: testcontainers/sshd:1.1.0 at registry: https://index.docker.io/v1/
2024-09-06 11:14:02,421 (RegistryAuthLocator.java:129) DEBUG : Cached auth found: [AuthConfig{username=eraonel, password=hidden non-blank value, auth=blank, email=null, registryAddress=https://index.docker.io/v1/, registryToken=blank}]
2024-09-06 11:14:02,421 (AuthDelegatingDockerClientConfig.java:47) DEBUG : Effective auth config [AuthConfig{username=eraonel, password=hidden non-blank value, auth=blank, email=null, registryAddress=https://index.docker.io/v1/, registryToken=blank}]
2024-09-06 11:14:02,425 (PrefixingImageNameSubstitutor.java:31) DEBUG : No prefix is configured
2024-09-06 11:14:02,425 (ImageNameSubstitutor.java:113) DEBUG : Did not find a substitute image for testcontainers/ryuk:0.5.1 (using image substitutor: DefaultImageNameSubstitutor (composite of 'ConfigurationFileImageNameSubstitutor' and 'PrefixingImageNameSubstitutor'))
2024-09-06 11:14:02,426 (AbstractImagePullPolicy.java:36) DEBUG : Using locally available and not pulling image: testcontainers/ryuk:0.5.1
2024-09-06 11:14:02,426 (GenericContainer.java:343) DEBUG : Starting container: testcontainers/ryuk:0.5.1
2024-09-06 11:14:02,426 (GenericContainer.java:350) DEBUG : Trying to start container: testcontainers/ryuk:0.5.1 (attempt 1/1)
2024-09-06 11:14:02,427 (GenericContainer.java:386) DEBUG : Starting container: testcontainers/ryuk:0.5.1
2024-09-06 11:14:02,427 (GenericContainer.java:388)  INFO : Creating container for image: testcontainers/ryuk:0.5.1
2024-09-06 11:14:02,427 (RegistryAuthLocator.java:121) DEBUG : Looking up auth config for image: testcontainers/ryuk:0.5.1 at registry: https://index.docker.io/v1/
2024-09-06 11:14:02,427 (RegistryAuthLocator.java:129) DEBUG : Cached auth found: [AuthConfig{username=eraonel, password=hidden non-blank value, auth=blank, email=null, registryAddress=https://index.docker.io/v1/, registryToken=blank}]
2024-09-06 11:14:02,427 (AuthDelegatingDockerClientConfig.java:47) DEBUG : Effective auth config [AuthConfig{username=eraonel, password=hidden non-blank value, auth=blank, email=null, registryAddress=https://index.docker.io/v1/, registryToken=blank}]
2024-09-06 11:14:02,440 (AbstrDockerCmd.java:32) DEBUG : Cmd: org.testcontainers.shaded.com.github.dockerjava.core.command.CreateContainerCmdImpl@dc7b462[aliases=<null>,argsEscaped=<null>,attachStderr=<null>,attachStdin=<null>,attachStdout=<null>,authConfig=AuthConfig(username=eraonel, email=null, registryAddress=https://index.docker.io/v1/, stackOrchestrator=null),cmd={},domainName=<null>,entrypoint=<null>,env={},exposedPorts=ExposedPorts(exposedPorts=[8080/tcp]),healthcheck=<null>,hostConfig=HostConfig(binds=[//var/run/docker.sock:/var/run/docker.sock:rw], blkioWeight=null, blkioWeightDevice=null, blkioDeviceReadBps=null, blkioDeviceWriteBps=null, blkioDeviceReadIOps=null, blkioDeviceWriteIOps=null, memorySwappiness=null, nanoCPUs=null, capAdd=null, capDrop=null, containerIDFile=null, cpuPeriod=null, cpuRealtimePeriod=null, cpuRealtimeRuntime=null, cpuShares=null, cpuQuota=null, cpusetCpus=null, cpusetMems=null, devices=null, deviceCgroupRules=null, deviceRequests=null, diskQuota=null, dns=null, dnsOptions=null, dnsSearch=null, extraHosts=[], groupAdd=null, ipcMode=null, cgroup=null, links=[], logConfig=LogConfig(type=null, config=null), lxcConf=null, memory=null, memorySwap=null, memoryReservation=null, kernelMemory=null, networkMode=null, oomKillDisable=null, init=null, autoRemove=true, oomScoreAdj=null, portBindings={8080/tcp=[Lcom.github.dockerjava.api.model.Ports$Binding;@6eaa21d8}, privileged=true, publishAllPorts=null, readonlyRootfs=null, restartPolicy=null, ulimits=null, cpuCount=null, cpuPercent=null, ioMaximumIOps=null, ioMaximumBandwidth=null, volumesFrom=[], mounts=null, pidMode=null, isolation=null, securityOpts=null, storageOpt=null, cgroupParent=null, volumeDriver=null, shmSize=null, pidsLimit=null, runtime=null, tmpFs=null, utSMode=null, usernsMode=null, sysctls=null, consoleSize=null, cgroupnsMode=null),hostName=<null>,image=testcontainers/ryuk:0.5.1,ipv4Address=<null>,ipv6Address=<null>,labels={org.testcontainers=true, org.testcontainers.lang=java, org.testcontainers.version=1.19.0},macAddress=<null>,name=testcontainers-ryuk-10d076da-69b9-4af4-aabf-8a5e4512253d,networkDisabled=<null>,networkingConfig=<null>,onBuild=<null>,platform=<null>,portSpecs=<null>,shell=<null>,stdInOnce=<null>,stdinOpen=<null>,stopSignal=<null>,stopTimeout=<null>,tty=<null>,user=<null>,volumes=Volumes(volumes=[]),workingDir=<null>]
2024-09-06 11:14:02,522 (InternalHttpClient.java:172) DEBUG : ex-00000006: preparing request execution
2024-09-06 11:14:02,522 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:02,522 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:02,522 (ProtocolExec.java:161) DEBUG : ex-00000006: target auth state: UNCHALLENGED
2024-09-06 11:14:02,522 (ProtocolExec.java:167) DEBUG : ex-00000006: proxy auth state: UNCHALLENGED
2024-09-06 11:14:02,522 (ConnectExec.java:116) DEBUG : ex-00000006: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:02,523 (InternalExecRuntime.java:101) DEBUG : ex-00000006: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:02,523 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000006: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:02,523 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000006: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:02,523 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000006: acquired ep-00000005
2024-09-06 11:14:02,523 (InternalExecRuntime.java:120) DEBUG : ex-00000006: acquired endpoint ep-00000005
2024-09-06 11:14:02,523 (MainClientExec.java:102) DEBUG : ex-00000006: executing POST /v1.32/containers/create?name=testcontainers-ryuk-10d076da-69b9-4af4-aabf-8a5e4512253d HTTP/1.1
2024-09-06 11:14:02,523 (InternalExecRuntime.java:213) DEBUG : ep-00000005: start execution ex-00000006
2024-09-06 11:14:02,523 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000005: executing exchange ex-00000006 over http-outgoing-0
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> POST /v1.32/containers/create?name=testcontainers-ryuk-10d076da-69b9-4af4-aabf-8a5e4512253d HTTP/1.1
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> X-Registry-Auth: eyJ1c2VybmFtZSI6ImVyYW9uZWwiLCJwYXNzd29yZCI6ImRja3JfcGF0X29kN1FHQ19GMGhfelR5eG5Mc25ROTh4RXlLNCIsImVtYWlsIjpudWxsLCJzZXJ2ZXJhZGRyZXNzIjoiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIiwiYXV0aCI6bnVsbCwicmVnaXN0cnl0b2tlbiI6bnVsbCwiaWRlbnRpdHl0b2tlbiI6bnVsbCwic3RhY2tPcmNoZXN0cmF0b3IiOm51bGx9
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> accept: application/json
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> content-type: application/json
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Content-Length: 1955
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:02,524 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:02,524 (Wire.java:92) DEBUG : http-outgoing-0 >> "POST /v1.32/containers/create?name=testcontainers-ryuk-10d076da-69b9-4af4-aabf-8a5e4512253d HTTP/1.1[\r][\n]"
2024-09-06 11:14:02,524 (Wire.java:92) DEBUG : http-outgoing-0 >> "X-Registry-Auth: eyJ1c2VybmFtZSI6ImVyYW9uZWwiLCJwYXNzd29yZCI6ImRja3JfcGF0X29kN1FHQ19GMGhfelR5eG5Mc25ROTh4RXlLNCIsImVtYWlsIjpudWxsLCJzZXJ2ZXJhZGRyZXNzIjoiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIiwiYXV0aCI6bnVsbCwicmVnaXN0cnl0b2tlbiI6bnVsbCwiaWRlbnRpdHl0b2tlbiI6bnVsbCwic3RhY2tPcmNoZXN0cmF0b3IiOm51bGx9[\r][\n]"
2024-09-06 11:14:02,524 (Wire.java:92) DEBUG : http-outgoing-0 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "Content-Length: 1955[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:02,525 (Wire.java:106) DEBUG : http-outgoing-0 >> "{"Hostname":null,"Domainname":null,"User":null,"AttachStdin":null,"AttachStdout":null,"AttachStderr":null,"PortSpecs":null,"Tty":null,"OpenStdin":null,"StdinOnce":null,"Env":[],"Cmd":[],"Healthcheck":null,"ArgsEscaped":null,"Entrypoint":null,"Image":"testcontainers/ryuk:0.5.1","Volumes":{},"WorkingDir":null,"MacAddress":null,"OnBuild":null,"NetworkDisabled":null,"ExposedPorts":{"8080/tcp":{}},"StopSignal":null,"StopTimeout":null,"HostConfig":{"Binds":["//var/run/docker.sock:/var/run/docker.sock:rw"],"BlkioWeight":null,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"MemorySwappiness":null,"NanoCpus":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":null,"CpuPeriod":null,"CpuRealtimePeriod":null,"CpuRealtimeRuntime":null,"CpuShares":null,"CpuQuota":null,"CpusetCpus":null,"CpusetMems":null,"Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"DiskQuota":null,"Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":[],"GroupAdd":null,"IpcMode":null,"Cgroup":null,"Links":[],"LogConfig":null,"LxcConf":null,"Memory":null,"MemorySwap":null,"MemoryReservation":null,"KernelMemory":null,"NetworkMode":null,"OomKillDisable":null,"Init":null,"AutoRemove":true,"OomScoreAdj":null,"PortBindings":{"8080/tcp":[{"HostIp":"","HostPort":""}]},"Privileged":true,"PublishAllPorts":null,"ReadonlyRootfs":null,"RestartPolicy":null,"Ulimits":null,"CpuCount":null,"CpuPercent":null,"IOMaximumIOps":null,"IOMaximumBandwidth":null,"VolumesFrom":[],"Mounts":null,"PidMode":null,"Isolation":null,"SecurityOpt":null,"StorageOpt":null,"CgroupParent":null,"VolumeDriver":null,"ShmSize":null,"PidsLimit":null,"Runtime":null,"Tmpfs":null,"UTSMode":null,"UsernsMode":null,"Sysctls":null,"ConsoleSize":null,"CgroupnsMode":null},"Labels":{"org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"},"Shell":null,"NetworkingConfig":null}"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 201 Created[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:02 GMT[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Length: 88[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:02,575 (Wire.java:92) DEBUG : http-outgoing-0 << "{"Id":"53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a","Warnings":[]}[\n]"
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 201 Created
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Type: application/json
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:02 GMT
2024-09-06 11:14:02,576 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Length: 88
2024-09-06 11:14:02,576 (MainClientExec.java:126) DEBUG : ex-00000006: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:02,579 (InternalExecRuntime.java:255) DEBUG : ep-00000005: releasing valid endpoint
2024-09-06 11:14:02,579 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000005: releasing endpoint
2024-09-06 11:14:02,579 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000005: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:02,579 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000005: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:02,582 (GenericContainer.java:452)  INFO : Container testcontainers/ryuk:0.5.1 is starting: 53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a
2024-09-06 11:14:02,584 (AbstrDockerCmd.java:32) DEBUG : Cmd: 53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a
2024-09-06 11:14:02,584 (InternalHttpClient.java:172) DEBUG : ex-00000007: preparing request execution
2024-09-06 11:14:02,584 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:02,585 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:02,585 (ProtocolExec.java:161) DEBUG : ex-00000007: target auth state: UNCHALLENGED
2024-09-06 11:14:02,585 (ProtocolExec.java:167) DEBUG : ex-00000007: proxy auth state: UNCHALLENGED
2024-09-06 11:14:02,585 (ConnectExec.java:116) DEBUG : ex-00000007: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:02,585 (InternalExecRuntime.java:101) DEBUG : ex-00000007: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:02,585 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000007: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:02,585 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000007: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:02,585 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000007: acquired ep-00000006
2024-09-06 11:14:02,585 (InternalExecRuntime.java:120) DEBUG : ex-00000007: acquired endpoint ep-00000006
2024-09-06 11:14:02,586 (MainClientExec.java:102) DEBUG : ex-00000007: executing POST /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/start HTTP/1.1
2024-09-06 11:14:02,586 (InternalExecRuntime.java:213) DEBUG : ep-00000006: start execution ex-00000007
2024-09-06 11:14:02,586 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000006: executing exchange ex-00000007 over http-outgoing-0
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> POST /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/start HTTP/1.1
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> accept: application/json
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> content-type: application/json
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:02,586 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:02,586 (Wire.java:92) DEBUG : http-outgoing-0 >> "POST /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/start HTTP/1.1[\r][\n]"
2024-09-06 11:14:02,586 (Wire.java:92) DEBUG : http-outgoing-0 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:02,586 (Wire.java:92) DEBUG : http-outgoing-0 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:02,586 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:02,586 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:02,586 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:02,586 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:02,587 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:02,587 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:03,200 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 204 No Content[\r][\n]"
2024-09-06 11:14:03,200 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,200 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,200 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,200 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,200 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,200 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,200 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 204 No Content
2024-09-06 11:14:03,200 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:03,200 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:03,200 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:03,200 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,200 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,201 (MainClientExec.java:126) DEBUG : ex-00000007: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,201 (InternalExecRuntime.java:255) DEBUG : ep-00000006: releasing valid endpoint
2024-09-06 11:14:03,201 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000006: releasing endpoint
2024-09-06 11:14:03,201 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000006: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,201 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000006: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,208 (AbstrDockerCmd.java:32) DEBUG : Cmd: 53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a,false
2024-09-06 11:14:03,208 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/json], queryParams={}}
2024-09-06 11:14:03,208 (InternalHttpClient.java:172) DEBUG : ex-00000008: preparing request execution
2024-09-06 11:14:03,209 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,209 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,209 (ProtocolExec.java:161) DEBUG : ex-00000008: target auth state: UNCHALLENGED
2024-09-06 11:14:03,209 (ProtocolExec.java:167) DEBUG : ex-00000008: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,209 (ConnectExec.java:116) DEBUG : ex-00000008: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,209 (InternalExecRuntime.java:101) DEBUG : ex-00000008: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,209 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000008: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,209 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000008: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,209 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000008: acquired ep-00000007
2024-09-06 11:14:03,210 (InternalExecRuntime.java:120) DEBUG : ex-00000008: acquired endpoint ep-00000007
2024-09-06 11:14:03,210 (MainClientExec.java:102) DEBUG : ex-00000008: executing GET /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/json HTTP/1.1
2024-09-06 11:14:03,210 (InternalExecRuntime.java:213) DEBUG : ep-00000007: start execution ex-00000008
2024-09-06 11:14:03,210 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000007: executing exchange ex-00000008 over http-outgoing-0
2024-09-06 11:14:03,210 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> GET /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/json HTTP/1.1
2024-09-06 11:14:03,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> accept: application/json
2024-09-06 11:14:03,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:03,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "GET /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,210 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,211 (Wire.java:92) DEBUG : http-outgoing-0 << "1382[\r][\n]"
2024-09-06 11:14:03,212 (Wire.java:106) DEBUG : http-outgoing-0 << "{"Id":"53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a","Created":"2024-09-06T09:14:02.558665516Z","Path":"/bin/ryuk","Args":[],"State":{"Status":"running","Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":38945,"ExitCode":0,"Error":"","StartedAt":"2024-09-06T09:14:03.226341784Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"sha256:ec913eeff75a6b5ed284cf17e186213a466ec10a8f471798318ffa0813b5d828","ResolvConfPath":"/var/lib/docker/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/resolv.conf","HostnamePath":"/var/lib/docker/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/hostname","HostsPath":"/var/lib/docker/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/hosts","LogPath":"/var/lib/docker/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a-json.log","Name":"/testcontainers-ryuk-10d076da-69b9-4af4-aabf-8a5e4512253d","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":null,"HostConfig":{"Binds":["//var/run/docker.sock:/var/run/docker.sock:rw"],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"8080/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":true,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":[],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":true,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":["label=disable"],"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":null,"ReadonlyPaths":null},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/aa9cfb17846a51e4e63cebaf06c6c12991e6565676accada4d83d88e2b311a7b-init/diff:/var/lib/docker/overlay2/c440eb03ac968ed2b9a7a0ea03077f7bfdd1cdc9b51c842cbbd87b2bea24bbe2/diff:/var/lib/docker/overlay2/2547d40147f4580dc3d17adbf80cc002c604f06033b11ae850120eef33343f06/diff:/var/lib/docker/overlay2/b74211cecbd810f1007a0ea85e292342d9c316a5b99661cb3fdbd7dc284fd32e/diff","MergedDir":"/var/lib/docker/overlay2/aa9cfb17846a51e4e63cebaf06c6c12991e6565676accada4d83d88e2b311a7b/merged","UpperDir":"/var/lib/docker/overlay2/aa9cfb17846a51e4e63cebaf06c6c12991e6565676accada4d83d88e2b311a7b/diff","WorkDir":"/var/lib/docker/overlay2/aa9cfb17846a51e4e63cebaf06c6c12991e6565676accada4d83d88e2b311a7b/work"},"Name":"overlay2"},"Mounts":[{"Type":"bind","Source":"/var/run/docker.sock","Destination":"/var/run/docker.sock","Mode":"rw","RW":true,"Propagation":"rprivate"}],"Config":{"Hostname":"53e7f7878526","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"8080/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/ryuk"],"Image":"testcontainers/ryuk:0.5.1","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.testcontainers":"true","org.testcontainers.lang":""
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 200 OK
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Type: application/json
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,212 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Transfer-Encoding: chunked
2024-09-06 11:14:03,212 (MainClientExec.java:126) DEBUG : ex-00000008: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,251 (Wire.java:92) DEBUG : http-outgoing-0 << "java","org.testcontainers.ryuk":"true","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"41050d2f95c486901cdd8ba44e54cdf696ef38879578079e150b8335a0a73cab","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{"8080/tcp":[{"HostIp":"0.0.0.0","HostPort":"32798"},{"HostIp":"::","HostPort":"32798"}]},"SandboxKey":"/var/run/docker/netns/41050d2f95c4","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"b3e794de31c98115fe44c128b757eba544a948650d99af2ccf6b5ada69dcc899","Gateway":"172.17.0.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.2","IPPrefixLen":16,"IPv6Gateway":"","MacAddress":"02:42:ac:11:00:02","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"b3e794de31c98115fe44c128b757eba544a948650d99af2ccf6b5ada69dcc899","Gateway":"172.17.0.1","IPAddress":"172.17.0.2","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"02:42:ac:11:00:02","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:03,270 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,270 (Wire.java:92) DEBUG : http-outgoing-0 << "0[\r][\n]"
2024-09-06 11:14:03,270 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,270 (InternalExecRuntime.java:255) DEBUG : ep-00000007: releasing valid endpoint
2024-09-06 11:14:03,270 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000007: releasing endpoint
2024-09-06 11:14:03,271 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000007: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,271 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000007: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,274 (AbstrDockerCmd.java:32) DEBUG : Cmd: sha256:ec913eeff75a6b5ed284cf17e186213a466ec10a8f471798318ffa0813b5d828
2024-09-06 11:14:03,274 (InternalHttpClient.java:172) DEBUG : ex-00000009: preparing request execution
2024-09-06 11:14:03,274 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,274 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,274 (ProtocolExec.java:161) DEBUG : ex-00000009: target auth state: UNCHALLENGED
2024-09-06 11:14:03,274 (ProtocolExec.java:167) DEBUG : ex-00000009: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,274 (ConnectExec.java:116) DEBUG : ex-00000009: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,274 (InternalExecRuntime.java:101) DEBUG : ex-00000009: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,275 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000009: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,275 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000009: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,275 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000009: acquired ep-00000008
2024-09-06 11:14:03,275 (InternalExecRuntime.java:120) DEBUG : ex-00000009: acquired endpoint ep-00000008
2024-09-06 11:14:03,275 (MainClientExec.java:102) DEBUG : ex-00000009: executing GET /v1.32/images/sha256:ec913eeff75a6b5ed284cf17e186213a466ec10a8f471798318ffa0813b5d828/json HTTP/1.1
2024-09-06 11:14:03,275 (InternalExecRuntime.java:213) DEBUG : ep-00000008: start execution ex-00000009
2024-09-06 11:14:03,275 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000008: executing exchange ex-00000009 over http-outgoing-0
2024-09-06 11:14:03,275 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> GET /v1.32/images/sha256:ec913eeff75a6b5ed284cf17e186213a466ec10a8f471798318ffa0813b5d828/json HTTP/1.1
2024-09-06 11:14:03,275 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> accept: application/json
2024-09-06 11:14:03,275 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,275 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,275 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,275 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:03,275 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:03,275 (Wire.java:92) DEBUG : http-outgoing-0 >> "GET /v1.32/images/sha256:ec913eeff75a6b5ed284cf17e186213a466ec10a8f471798318ffa0813b5d828/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,275 (Wire.java:92) DEBUG : http-outgoing-0 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,275 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,276 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,276 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,276 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,276 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,276 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Length: 2001[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,277 (Wire.java:92) DEBUG : http-outgoing-0 << "{"Id":"sha256:ec913eeff75a6b5ed284cf17e186213a466ec10a8f471798318ffa0813b5d828","RepoTags":["testcontainers/ryuk:0.5.1"],"RepoDigests":["testcontainers/ryuk@sha256:533abc56c07b52a26c955d1e7ae428d810582ab01c156384ae79960eb5fa0775"],"Parent":"","Comment":"buildkit.dockerfile.v0","Created":"2023-05-17T15:11:02.784684507Z","Container":"","ContainerConfig":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":null,"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":null},"DockerVersion":"","Author":"","Config":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/ryuk"],"ArgsEscaped":true,"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.testcontainers.ryuk":"true"}},"Architecture":"amd64","Os":"linux","Size":12695732,"VirtualSize":12695732,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/2547d40147f4580dc3d17adbf80cc002c604f06033b11ae850120eef33343f06/diff:/var/lib/docker/overlay2/b74211cecbd810f1007a0ea85e292342d9c316a5b99661cb3fdbd7dc284fd32e/diff","MergedDir":"/var/lib/docker/overlay2/c440eb03ac968ed2b9a7a0ea03077f7bfdd1cdc9b51c842cbbd87b2bea24bbe2/merged","UpperDir":"/var/lib/docker/overlay2/c440eb03ac968ed2b9a7a0ea03077f7bfdd1cdc9b51c842cbbd87b2bea24bbe2/diff","WorkDir":"/var/lib/docker/overlay2/c440eb03ac968ed2b9a7a0ea03077f7bfdd1cdc9b51c842cbbd87b2bea24bbe2/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:5bc340f6d4f5a3bc999dfbc790a0bdf0920b9103ef794645034de4260ee4e9c8","sha256:399f3aa1fc62064e0be857829b8e7284408be4b60db81996e105a78e2059e5c9","sha256:2ad1a08beb0cf8625d0ffd3d2847150709df6fdb34c6a2ef514106ad08c5d785"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"}}[\n]"
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 200 OK
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Type: application/json
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,277 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Length: 2001
2024-09-06 11:14:03,278 (MainClientExec.java:126) DEBUG : ex-00000009: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,278 (InternalExecRuntime.java:255) DEBUG : ep-00000008: releasing valid endpoint
2024-09-06 11:14:03,279 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000008: releasing endpoint
2024-09-06 11:14:03,279 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000008: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,279 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000008: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,279 (AbstrDockerCmd.java:32) DEBUG : Cmd:
2024-09-06 11:14:03,280 (InternalHttpClient.java:172) DEBUG : ex-0000000A: preparing request execution
2024-09-06 11:14:03,280 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,280 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,280 (ProtocolExec.java:161) DEBUG : ex-0000000A: target auth state: UNCHALLENGED
2024-09-06 11:14:03,280 (ProtocolExec.java:167) DEBUG : ex-0000000A: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,280 (ConnectExec.java:116) DEBUG : ex-0000000A: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,280 (InternalExecRuntime.java:101) DEBUG : ex-0000000A: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,280 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000000A: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,280 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000000A: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,281 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000000A: acquired ep-00000009
2024-09-06 11:14:03,281 (InternalExecRuntime.java:120) DEBUG : ex-0000000A: acquired endpoint ep-00000009
2024-09-06 11:14:03,281 (MainClientExec.java:102) DEBUG : ex-0000000A: executing GET /v1.32/version HTTP/1.1
2024-09-06 11:14:03,281 (InternalExecRuntime.java:213) DEBUG : ep-00000009: start execution ex-0000000A
2024-09-06 11:14:03,281 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000009: executing exchange ex-0000000A over http-outgoing-0
2024-09-06 11:14:03,281 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> GET /v1.32/version HTTP/1.1
2024-09-06 11:14:03,281 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> accept: application/json
2024-09-06 11:14:03,281 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,281 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,281 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,281 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:03,281 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "GET /v1.32/version HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,281 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:03,286 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Length: 856[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,287 (Wire.java:92) DEBUG : http-outgoing-0 << "{"Platform":{"Name":"Docker Engine - Community"},"Components":[{"Name":"Engine","Version":"24.0.6","Details":{"ApiVersion":"1.43","Arch":"amd64","BuildTime":"2023-09-04T12:32:12.000000000+00:00","Experimental":"false","GitCommit":"1a79695","GoVersion":"go1.20.7","KernelVersion":"5.15.133.1-microsoft-standard-WSL2","MinAPIVersion":"1.12","Os":"linux"}},{"Name":"containerd","Version":"1.6.22","Details":{"GitCommit":"8165feabfdfe38c65b599c4993d227328c231fca"}},{"Name":"runc","Version":"1.1.8","Details":{"GitCommit":"v1.1.8-0-g82f18fe"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"Version":"24.0.6","ApiVersion":"1.43","MinAPIVersion":"1.12","GitCommit":"1a79695","GoVersion":"go1.20.7","Os":"linux","Arch":"amd64","KernelVersion":"5.15.133.1-microsoft-standard-WSL2","BuildTime":"2023-09-04T12:32:12.000000000+00:00"}[\n]"
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 200 OK
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Type: application/json
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,287 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Length: 856
2024-09-06 11:14:03,288 (MainClientExec.java:126) DEBUG : ex-0000000A: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,288 (InternalExecRuntime.java:255) DEBUG : ep-00000009: releasing valid endpoint
2024-09-06 11:14:03,288 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000009: releasing endpoint
2024-09-06 11:14:03,289 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000009: connection http-outgoing-0 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,289 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000009: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,297 (InternalHttpClient.java:172) DEBUG : ex-0000000B: preparing request execution
2024-09-06 11:14:03,298 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,298 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,298 (ProtocolExec.java:161) DEBUG : ex-0000000B: target auth state: UNCHALLENGED
2024-09-06 11:14:03,299 (ProtocolExec.java:167) DEBUG : ex-0000000B: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,299 (ConnectExec.java:116) DEBUG : ex-0000000B: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,299 (InternalExecRuntime.java:101) DEBUG : ex-0000000B: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,299 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000000B: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,299 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000000B: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,299 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000000B: acquired ep-0000000A
2024-09-06 11:14:03,299 (InternalExecRuntime.java:120) DEBUG : ex-0000000B: acquired endpoint ep-0000000A
2024-09-06 11:14:03,300 (MainClientExec.java:102) DEBUG : ex-0000000B: executing GET /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1
2024-09-06 11:14:03,300 (InternalExecRuntime.java:213) DEBUG : ep-0000000A: start execution ex-0000000B
2024-09-06 11:14:03,300 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000000A: executing exchange ex-0000000B over http-outgoing-0
2024-09-06 11:14:03,300 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-0 >> GET /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1
2024-09-06 11:14:03,300 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,300 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,300 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,300 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Host: localhost:2375
2024-09-06 11:14:03,301 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-0 >> Connection: keep-alive
2024-09-06 11:14:03,301 (Wire.java:92) DEBUG : http-outgoing-0 >> "GET /v1.32/containers/53e7f7878526d6b83291833f621c41a0dfe9e6bb61c69a35b7a0cce53f7e812a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,301 (Wire.java:92) DEBUG : http-outgoing-0 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,301 (Wire.java:92) DEBUG : http-outgoing-0 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,301 (Wire.java:92) DEBUG : http-outgoing-0 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,301 (Wire.java:92) DEBUG : http-outgoing-0 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,301 (Wire.java:92) DEBUG : http-outgoing-0 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,301 (Wire.java:92) DEBUG : http-outgoing-0 >> "[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "Content-Type: application/vnd.docker.raw-stream[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:03,302 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-0 << HTTP/1.1 200 OK
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Api-Version: 1.43
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Content-Type: application/vnd.docker.raw-stream
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Docker-Experimental: false
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Ostype: linux
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,303 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-0 << Transfer-Encoding: chunked
2024-09-06 11:14:03,303 (MainClientExec.java:126) DEBUG : ex-0000000B: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "2e[\r][\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]&2024/09/06 09:14:03 Pinging Docker...[\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "38[\r][\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]02024/09/06 09:14:03 Docker daemon is available![\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "35[\r][\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]-2024/09/06 09:14:03 Starting on port 8080...[\n]"
2024-09-06 11:14:03,303 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,304 (Wire.java:92) DEBUG : http-outgoing-0 << "25[\r][\n]"
2024-09-06 11:14:03,304 (Wire.java:92) DEBUG : http-outgoing-0 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0x1d]2024/09/06 09:14:03 Started![\n]"
2024-09-06 11:14:03,304 (Wire.java:92) DEBUG : http-outgoing-0 << "[\r][\n]"
2024-09-06 11:14:03,306 (WaitingConsumer.java:88) DEBUG : STDERR: 2024/09/06 09:14:03 Pinging Docker...
2024-09-06 11:14:03,306 (WaitingConsumer.java:88) DEBUG : STDERR: 2024/09/06 09:14:03 Started!
2024-09-06 11:14:03,308 (InternalExecRuntime.java:278) DEBUG : ep-0000000A: cancel
2024-09-06 11:14:03,309 (DefaultManagedHttpClientConnection.java:143) DEBUG : http-outgoing-0: close connection IMMEDIATE
2024-09-06 11:14:03,309 (InternalExecRuntime.java:239) DEBUG : ep-0000000A: endpoint closed
2024-09-06 11:14:03,309 (InternalExecRuntime.java:243) DEBUG : ep-0000000A: discarding endpoint
2024-09-06 11:14:03,309 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000000A: releasing endpoint
2024-09-06 11:14:03,309 (PoolingHttpClientConnectionManager.java:372) DEBUG : ep-0000000A: connection is not kept alive
2024-09-06 11:14:03,309 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000000A: connection released [route: {}->http://localhost:2375][total available: 0; route allocated: 0 of 2147483647; total allocated: 0 of 2147483647]
2024-09-06 11:14:03,310 (Wire.java:106) DEBUG : http-outgoing-0 << "[read] I/O error: Socket closed"
2024-09-06 11:14:03,310 (Wire.java:106) DEBUG : http-outgoing-0 << "[read] I/O error: Socket closed"
2024-09-06 11:14:03,310 (ApacheDockerHttpClientImpl.java:260) DEBUG : Failed to close the response
java.net.SocketException: Socket closed
	at java.base/sun.nio.ch.NioSocketImpl.ensureOpenAndConnected(NioSocketImpl.java:165)
	at java.base/sun.nio.ch.NioSocketImpl.beginRead(NioSocketImpl.java:231)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:299)
	at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
	at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
	at java.base/java.net.Socket$SocketInputStream.read(Socket.java:976)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.LoggingInputStream.read(LoggingInputStream.java:81)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl.fillBuffer(SessionInputBufferImpl.java:149)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl.readLine(SessionInputBufferImpl.java:280)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.getChunkSize(ChunkedInputStream.java:261)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.nextChunk(ChunkedInputStream.java:222)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.read(ChunkedInputStream.java:147)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.close(ChunkedInputStream.java:314)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer.close(Closer.java:48)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.IncomingHttpEntity.close(IncomingHttpEntity.java:111)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.HttpEntityWrapper.close(HttpEntityWrapper.java:120)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer.close(Closer.java:48)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicClassicHttpResponse.close(BasicClassicHttpResponse.java:93)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.CloseableHttpResponse.close(CloseableHttpResponse.java:200)
	at com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl$ApacheResponse.close(ApacheDockerHttpClientImpl.java:256)
	at org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.lambda$null$0(DefaultInvocationBuilder.java:272)
	at com.github.dockerjava.api.async.ResultCallbackTemplate.close(ResultCallbackTemplate.java:77)
	at org.testcontainers.containers.output.FrameConsumerResultCallback.close(FrameConsumerResultCallback.java:69)
	at org.testcontainers.containers.wait.strategy.LogMessageWaitStrategy.waitUntilReady(LogMessageWaitStrategy.java:49)
	at org.testcontainers.containers.wait.strategy.AbstractWaitStrategy.waitUntilReady(AbstractWaitStrategy.java:52)
	at org.testcontainers.containers.GenericContainer.waitUntilContainerStarted(GenericContainer.java:978)
	at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:502)
	at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:356)
	at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
	at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:346)
	at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:334)
	at org.testcontainers.utility.RyukResourceReaper.maybeStart(RyukResourceReaper.java:78)
	at org.testcontainers.utility.RyukResourceReaper.register(RyukResourceReaper.java:68)
	at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:435)
	at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:356)
	at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
	at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:346)
	at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:334)
	at org.testcontainers.containers.PortForwardingContainer.createSSHSession(PortForwardingContainer.java:46)
	at org.testcontainers.containers.PortForwardingContainer.getSshConnection(PortForwardingContainer.java:27)
	at org.testcontainers.containers.PortForwardingContainer.start(PortForwardingContainer.java:77)
	at org.testcontainers.containers.GenericContainer.applyConfiguration(GenericContainer.java:879)
	at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:390)
	at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:356)
	at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
	at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:346)
	at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:334)
	at com.ericsson.commonlibrary.netconf.util.Netopeer2DockerTestConfiguration.initialize(Netopeer2DockerTestConfiguration.java:158)
	at com.ericsson.commonlibrary.netconf.util.Netopeer2DockerTestConfiguration.<init>(Netopeer2DockerTestConfiguration.java:42)
	at com.ericsson.commonlibrary.netconf.util.Netopeer2DockerTestConfiguration$Builder.build(Netopeer2DockerTestConfiguration.java:143)
	at com.ericsson.commonlibrary.netconf.NetconfSshNotificationIT.setup(NetconfSshNotificationIT.java:41)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:568)
	at org.testng.internal.invokers.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:139)
	at org.testng.internal.invokers.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:69)
	at org.testng.internal.invokers.ConfigInvoker.invokeConfigurationMethod(ConfigInvoker.java:393)
	at org.testng.internal.invokers.ConfigInvoker.invokeConfigurations(ConfigInvoker.java:326)
	at org.testng.internal.invokers.TestMethodWorker.invokeBeforeClassMethods(TestMethodWorker.java:180)
	at org.testng.internal.invokers.TestMethodWorker.run(TestMethodWorker.java:122)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
	at org.testng.TestRunner.privateRun(TestRunner.java:819)
	at org.testng.TestRunner.run(TestRunner.java:619)
	at org.testng.SuiteRunner.runTest(SuiteRunner.java:443)
	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:437)
	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:397)
	at org.testng.SuiteRunner.run(SuiteRunner.java:336)
	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:95)
	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1301)
	at org.testng.TestNG.runSuitesLocally(TestNG.java:1228)
	at org.testng.TestNG.runSuites(TestNG.java:1134)
	at org.testng.TestNG.run(TestNG.java:1101)
	at com.microsoft.java.test.runner.testng.TestNGRunner.run(TestNGRunner.java:45)
	at com.microsoft.java.test.runner.testng.TestNGLauncher.execute(TestNGLauncher.java:32)
	at com.microsoft.java.test.runner.Launcher.main(Launcher.java:57)
2024-09-06 11:14:03,312 (GenericContainer.java:543)  INFO : Container testcontainers/ryuk:0.5.1 started in PT0.8868881S
2024-09-06 11:14:03,319 (ResourceReaper.java:388) DEBUG : Sending 'label=org.testcontainers%3Dtrue&label=org.testcontainers.lang%3Djava&label=org.testcontainers.version%3D1.19.0&label=org.testcontainers.sessionId%3D10d076da-69b9-4af4-aabf-8a5e4512253d' to Ryuk
2024-09-06 11:14:03,322 (RyukResourceReaper.java:111) DEBUG : Received 'ACK' from Ryuk
2024-09-06 11:14:03,323 (AbstrDockerCmd.java:32) DEBUG : Cmd: org.testcontainers.shaded.com.github.dockerjava.core.command.CreateContainerCmdImpl@15f8701f[aliases=<null>,argsEscaped=<null>,attachStderr=<null>,attachStdin=<null>,attachStdout=<null>,authConfig=AuthConfig(username=eraonel, email=null, registryAddress=https://index.docker.io/v1/, stackOrchestrator=null),cmd={sh,-c,echo "root:$PASSWORD" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa },domainName=<null>,entrypoint=<null>,env={PASSWORD=933e271a-0a42-4e38-b7c0-edf811ad230f},exposedPorts=ExposedPorts(exposedPorts=[22/tcp]),healthcheck=<null>,hostConfig=HostConfig(binds=[], blkioWeight=null, blkioWeightDevice=null, blkioDeviceReadBps=null, blkioDeviceWriteBps=null, blkioDeviceReadIOps=null, blkioDeviceWriteIOps=null, memorySwappiness=null, nanoCPUs=null, capAdd=null, capDrop=null, containerIDFile=null, cpuPeriod=null, cpuRealtimePeriod=null, cpuRealtimeRuntime=null, cpuShares=null, cpuQuota=null, cpusetCpus=null, cpusetMems=null, devices=null, deviceCgroupRules=null, deviceRequests=null, diskQuota=null, dns=null, dnsOptions=null, dnsSearch=null, extraHosts=[], groupAdd=null, ipcMode=null, cgroup=null, links=[], logConfig=LogConfig(type=null, config=null), lxcConf=null, memory=null, memorySwap=null, memoryReservation=null, kernelMemory=null, networkMode=null, oomKillDisable=null, init=null, autoRemove=null, oomScoreAdj=null, portBindings={22/tcp=[Lcom.github.dockerjava.api.model.Ports$Binding;@86733}, privileged=null, publishAllPorts=null, readonlyRootfs=null, restartPolicy=null, ulimits=null, cpuCount=null, cpuPercent=null, ioMaximumIOps=null, ioMaximumBandwidth=null, volumesFrom=[], mounts=null, pidMode=null, isolation=null, securityOpts=null, storageOpt=null, cgroupParent=null, volumeDriver=null, shmSize=null, pidsLimit=null, runtime=null, tmpFs=null, utSMode=null, usernsMode=null, sysctls=null, consoleSize=null, cgroupnsMode=null),hostName=<null>,image=testcontainers/sshd:1.1.0,ipv4Address=<null>,ipv6Address=<null>,labels={org.testcontainers=true, org.testcontainers.lang=java, org.testcontainers.version=1.19.0, org.testcontainers.sessionId=10d076da-69b9-4af4-aabf-8a5e4512253d},macAddress=<null>,name=<null>,networkDisabled=<null>,networkingConfig=<null>,onBuild=<null>,platform=<null>,portSpecs=<null>,shell=<null>,stdInOnce=<null>,stdinOpen=<null>,stopSignal=<null>,stopTimeout=<null>,tty=<null>,user=<null>,volumes=Volumes(volumes=[]),workingDir=<null>]
2024-09-06 11:14:03,325 (InternalHttpClient.java:172) DEBUG : ex-0000000C: preparing request execution
2024-09-06 11:14:03,325 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,325 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,325 (ProtocolExec.java:161) DEBUG : ex-0000000C: target auth state: UNCHALLENGED
2024-09-06 11:14:03,325 (ProtocolExec.java:167) DEBUG : ex-0000000C: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,326 (ConnectExec.java:116) DEBUG : ex-0000000C: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,326 (InternalExecRuntime.java:101) DEBUG : ex-0000000C: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,326 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000000C: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 0; route allocated: 0 of 2147483647; total allocated: 0 of 2147483647]
2024-09-06 11:14:03,326 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000000C: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,327 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000000C: acquired ep-0000000B
2024-09-06 11:14:03,327 (InternalExecRuntime.java:120) DEBUG : ex-0000000C: acquired endpoint ep-0000000B
2024-09-06 11:14:03,327 (ConnectExec.java:123) DEBUG : ex-0000000C: opening connection {}->http://localhost:2375
2024-09-06 11:14:03,327 (InternalExecRuntime.java:162) DEBUG : ep-0000000B: connecting endpoint (3 MINUTES)
2024-09-06 11:14:03,327 (PoolingHttpClientConnectionManager.java:405) DEBUG : ep-0000000B: connecting endpoint to http://localhost:2375 (3 MINUTES)
2024-09-06 11:14:03,328 (DefaultHttpClientConnectionOperator.java:145) DEBUG : http-outgoing-1: connecting to localhost/127.0.0.1:2375
2024-09-06 11:14:03,328 (DefaultHttpClientConnectionOperator.java:151) DEBUG : http-outgoing-1: connection established 127.0.0.1:42937<->127.0.0.1:2375
2024-09-06 11:14:03,328 (PoolingHttpClientConnectionManager.java:417) DEBUG : ep-0000000B: connected http-outgoing-1
2024-09-06 11:14:03,328 (InternalExecRuntime.java:166) DEBUG : ep-0000000B: endpoint connected
2024-09-06 11:14:03,328 (MainClientExec.java:102) DEBUG : ex-0000000C: executing POST /v1.32/containers/create HTTP/1.1
2024-09-06 11:14:03,328 (InternalExecRuntime.java:213) DEBUG : ep-0000000B: start execution ex-0000000C
2024-09-06 11:14:03,328 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000000B: executing exchange ex-0000000C over http-outgoing-1
2024-09-06 11:14:03,328 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> POST /v1.32/containers/create HTTP/1.1
2024-09-06 11:14:03,328 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> X-Registry-Auth: eyJ1c2VybmFtZSI6ImVyYW9uZWwiLCJwYXNzd29yZCI6ImRja3JfcGF0X29kN1FHQ19GMGhfelR5eG5Mc25ROTh4RXlLNCIsImVtYWlsIjpudWxsLCJzZXJ2ZXJhZGRyZXNzIjoiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIiwiYXV0aCI6bnVsbCwicmVnaXN0cnl0b2tlbiI6bnVsbCwiaWRlbnRpdHl0b2tlbiI6bnVsbCwic3RhY2tPcmNoZXN0cmF0b3IiOm51bGx9
2024-09-06 11:14:03,328 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:03,328 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> content-type: application/json
2024-09-06 11:14:03,328 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,328 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,328 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,329 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Content-Length: 2283
2024-09-06 11:14:03,329 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:03,329 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "POST /v1.32/containers/create HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "X-Registry-Auth: eyJ1c2VybmFtZSI6ImVyYW9uZWwiLCJwYXNzd29yZCI6ImRja3JfcGF0X29kN1FHQ19GMGhfelR5eG5Mc25ROTh4RXlLNCIsImVtYWlsIjpudWxsLCJzZXJ2ZXJhZGRyZXNzIjoiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIiwiYXV0aCI6bnVsbCwicmVnaXN0cnl0b2tlbiI6bnVsbCwiaWRlbnRpdHl0b2tlbiI6bnVsbCwic3RhY2tPcmNoZXN0cmF0b3IiOm51bGx9[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "Content-Length: 2283[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:03,329 (Wire.java:106) DEBUG : http-outgoing-1 >> "{"Hostname":null,"Domainname":null,"User":null,"AttachStdin":null,"AttachStdout":null,"AttachStderr":null,"PortSpecs":null,"Tty":null,"OpenStdin":null,"StdinOnce":null,"Env":["PASSWORD=933e271a-0a42-4e38-b7c0-edf811ad230f"],"Cmd":["sh","-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"Healthcheck":null,"ArgsEscaped":null,"Entrypoint":null,"Image":"testcontainers/sshd:1.1.0","Volumes":{},"WorkingDir":null,"MacAddress":null,"OnBuild":null,"NetworkDisabled":null,"ExposedPorts":{"22/tcp":{}},"StopSignal":null,"StopTimeout":null,"HostConfig":{"Binds":[],"BlkioWeight":null,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"MemorySwappiness":null,"NanoCpus":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":null,"CpuPeriod":null,"CpuRealtimePeriod":null,"CpuRealtimeRuntime":null,"CpuShares":null,"CpuQuota":null,"CpusetCpus":null,"CpusetMems":null,"Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"DiskQuota":null,"Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":[],"GroupAdd":null,"IpcMode":null,"Cgroup":null,"Links":[],"LogConfig":null,"LxcConf":null,"Memory":null,"MemorySwap":null,"MemoryReservation":null,"KernelMemory":null,"NetworkMode":null,"OomKillDisable":null,"Init":null,"AutoRemove":null,"OomScoreAdj":null,"PortBindings":{"22/tcp":[{"HostIp":"","HostPort":""}]},"Privileged":null,"PublishAllPorts":null,"ReadonlyRootfs":null,"RestartPolicy":null,"Ulimits":null,"CpuCount":null,"CpuPercent":null,"IOMaximumIOps":null,"IOMaximumBandwidth":null,"VolumesFrom":[],"Mounts":null,"PidMode":null,"Isolation":null,"SecurityOpt":null,"StorageOpt":null,"CgroupParent":null,"VolumeDriver":null,"ShmSize":null,"PidsLimit":null,"Runtime":null,"Tmpfs":null,"UTSMode":null,"UsernsMode":null,"Sysctls":null,"ConsoleSize":null,"CgroupnsMode":null},"Labels":{"org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d"},"Shell":null,"NetworkingConfig":null}"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 201 Created[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Length: 88[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,397 (Wire.java:92) DEBUG : http-outgoing-1 << "{"Id":"e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42","Warnings":[]}[\n]"
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 201 Created
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,398 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Length: 88
2024-09-06 11:14:03,398 (MainClientExec.java:126) DEBUG : ex-0000000C: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,399 (InternalExecRuntime.java:255) DEBUG : ep-0000000B: releasing valid endpoint
2024-09-06 11:14:03,399 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000000B: releasing endpoint
2024-09-06 11:14:03,399 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000000B: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,399 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000000B: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,399 (GenericContainer.java:452)  INFO : Container testcontainers/sshd:1.1.0 is starting: e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42
2024-09-06 11:14:03,399 (AbstrDockerCmd.java:32) DEBUG : Cmd: e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42
2024-09-06 11:14:03,400 (InternalHttpClient.java:172) DEBUG : ex-0000000D: preparing request execution
2024-09-06 11:14:03,400 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,400 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,400 (ProtocolExec.java:161) DEBUG : ex-0000000D: target auth state: UNCHALLENGED
2024-09-06 11:14:03,400 (ProtocolExec.java:167) DEBUG : ex-0000000D: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,400 (ConnectExec.java:116) DEBUG : ex-0000000D: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,400 (InternalExecRuntime.java:101) DEBUG : ex-0000000D: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,400 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000000D: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,400 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000000D: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,400 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000000D: acquired ep-0000000C
2024-09-06 11:14:03,400 (InternalExecRuntime.java:120) DEBUG : ex-0000000D: acquired endpoint ep-0000000C
2024-09-06 11:14:03,400 (MainClientExec.java:102) DEBUG : ex-0000000D: executing POST /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/start HTTP/1.1
2024-09-06 11:14:03,400 (InternalExecRuntime.java:213) DEBUG : ep-0000000C: start execution ex-0000000D
2024-09-06 11:14:03,400 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000000C: executing exchange ex-0000000D over http-outgoing-1
2024-09-06 11:14:03,400 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> POST /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/start HTTP/1.1
2024-09-06 11:14:03,400 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:03,401 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> content-type: application/json
2024-09-06 11:14:03,401 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,401 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,401 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,401 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:03,401 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "POST /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/start HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,401 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:03,919 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 204 No Content[\r][\n]"
2024-09-06 11:14:03,919 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,920 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,920 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,920 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,920 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,920 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,920 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 204 No Content
2024-09-06 11:14:03,920 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:03,920 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:03,920 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:03,920 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,920 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,920 (MainClientExec.java:126) DEBUG : ex-0000000D: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,920 (InternalExecRuntime.java:255) DEBUG : ep-0000000C: releasing valid endpoint
2024-09-06 11:14:03,920 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000000C: releasing endpoint
2024-09-06 11:14:03,920 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000000C: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,920 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000000C: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,921 (AbstrDockerCmd.java:32) DEBUG : Cmd: e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42,false
2024-09-06 11:14:03,921 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json], queryParams={}}
2024-09-06 11:14:03,921 (InternalHttpClient.java:172) DEBUG : ex-0000000E: preparing request execution
2024-09-06 11:14:03,921 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,921 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,921 (ProtocolExec.java:161) DEBUG : ex-0000000E: target auth state: UNCHALLENGED
2024-09-06 11:14:03,921 (ProtocolExec.java:167) DEBUG : ex-0000000E: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,921 (ConnectExec.java:116) DEBUG : ex-0000000E: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,922 (InternalExecRuntime.java:101) DEBUG : ex-0000000E: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,922 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000000E: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,922 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000000E: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,922 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000000E: acquired ep-0000000D
2024-09-06 11:14:03,922 (InternalExecRuntime.java:120) DEBUG : ex-0000000E: acquired endpoint ep-0000000D
2024-09-06 11:14:03,922 (MainClientExec.java:102) DEBUG : ex-0000000E: executing GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:03,922 (InternalExecRuntime.java:213) DEBUG : ep-0000000D: start execution ex-0000000E
2024-09-06 11:14:03,922 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000000D: executing exchange ex-0000000E over http-outgoing-1
2024-09-06 11:14:03,922 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:03,922 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:03,922 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,922 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,922 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,922 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:03,922 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:03,922 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,922 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,922 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,922 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,922 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,922 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,922 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,923 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:92) DEBUG : http-outgoing-1 << "1561[\r][\n]"
2024-09-06 11:14:03,924 (Wire.java:106) DEBUG : http-outgoing-1 << "{"Id":"e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42","Created":"2024-09-06T09:14:03.363842072Z","Path":"sh","Args":["-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"State":{"Status":"running","Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":39032,"ExitCode":0,"Error":"","StartedAt":"2024-09-06T09:14:03.944814108Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227","ResolvConfPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/resolv.conf","HostnamePath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hostname","HostsPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hosts","LogPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42-json.log","Name":"/gifted_wing","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":null,"HostConfig":{"Binds":[],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"22/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":false,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":[],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":null,"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":["/proc/asound","/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware"],"ReadonlyPaths":["/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"]},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241-init/diff:/var/lib/docker/overlay2/e28b30c29b08e2926bda21208ef83d5e74c0aee72ed93fed90538a5267b45ab0/diff:/var/lib/docker/overlay2/4d7cb413ac8d21062fde7ba4a60e9188a5d593092022f21ff5d7764688ed4873/diff","MergedDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/merged","UpperDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/diff","WorkDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/work"},"Name":"overlay2"},"Mounts":[],"Config":{"Hostname":"e4181d77bfe4","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"22/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PASSWORD=933e271a-0a42-4e38-b7c0-edf811ad230f","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin"
2024-09-06 11:14:03,924 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:03,924 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:03,925 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:03,925 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:03,925 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:03,925 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,925 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,925 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Transfer-Encoding: chunked
2024-09-06 11:14:03,925 (MainClientExec.java:126) DEBUG : ex-0000000E: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,925 (Wire.java:92) DEBUG : http-outgoing-1 << ":/bin"],"Cmd":["sh","-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"Image":"testcontainers/sshd:1.1.0","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"dedfb9d03f2f50c51e2bc6b90eafc7ad1468630df252ec6662cf5c463b70a1b1","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{"22/tcp":[{"HostIp":"0.0.0.0","HostPort":"32799"},{"HostIp":"::","HostPort":"32799"}]},"SandboxKey":"/var/run/docker/netns/dedfb9d03f2f","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","MacAddress":"02:42:ac:11:00:03","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"02:42:ac:11:00:03","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:03,926 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,926 (Wire.java:92) DEBUG : http-outgoing-1 << "0[\r][\n]"
2024-09-06 11:14:03,926 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,926 (InternalExecRuntime.java:255) DEBUG : ep-0000000D: releasing valid endpoint
2024-09-06 11:14:03,926 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000000D: releasing endpoint
2024-09-06 11:14:03,927 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000000D: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,927 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000000D: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,927 (AbstrDockerCmd.java:32) DEBUG : Cmd: sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227
2024-09-06 11:14:03,927 (InternalHttpClient.java:172) DEBUG : ex-0000000F: preparing request execution
2024-09-06 11:14:03,927 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,927 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,928 (ProtocolExec.java:161) DEBUG : ex-0000000F: target auth state: UNCHALLENGED
2024-09-06 11:14:03,928 (ProtocolExec.java:167) DEBUG : ex-0000000F: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,928 (ConnectExec.java:116) DEBUG : ex-0000000F: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,928 (InternalExecRuntime.java:101) DEBUG : ex-0000000F: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,928 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000000F: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,928 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000000F: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,928 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000000F: acquired ep-0000000E
2024-09-06 11:14:03,928 (InternalExecRuntime.java:120) DEBUG : ex-0000000F: acquired endpoint ep-0000000E
2024-09-06 11:14:03,928 (MainClientExec.java:102) DEBUG : ex-0000000F: executing GET /v1.32/images/sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227/json HTTP/1.1
2024-09-06 11:14:03,928 (InternalExecRuntime.java:213) DEBUG : ep-0000000E: start execution ex-0000000F
2024-09-06 11:14:03,928 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000000E: executing exchange ex-0000000F over http-outgoing-1
2024-09-06 11:14:03,928 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/images/sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227/json HTTP/1.1
2024-09-06 11:14:03,928 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:03,928 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,928 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,928 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,928 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:03,928 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/images/sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,929 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Length: 1781[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,930 (Wire.java:92) DEBUG : http-outgoing-1 << "{"Id":"sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227","RepoTags":["testcontainers/sshd:1.1.0"],"RepoDigests":["testcontainers/sshd@sha256:7d6fdd0bd7e64229c9cf9feabc394a6d0a7fc15a671e84993d86fd91ed52422e"],"Parent":"","Comment":"buildkit.dockerfile.v0","Created":"2022-06-10T23:22:54.163921906Z","Container":"","ContainerConfig":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":null,"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":null},"DockerVersion":"","Author":"","Config":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh"],"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":null},"Architecture":"amd64","Os":"linux","Size":12003032,"VirtualSize":12003032,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/4d7cb413ac8d21062fde7ba4a60e9188a5d593092022f21ff5d7764688ed4873/diff","MergedDir":"/var/lib/docker/overlay2/e28b30c29b08e2926bda21208ef83d5e74c0aee72ed93fed90538a5267b45ab0/merged","UpperDir":"/var/lib/docker/overlay2/e28b30c29b08e2926bda21208ef83d5e74c0aee72ed93fed90538a5267b45ab0/diff","WorkDir":"/var/lib/docker/overlay2/e28b30c29b08e2926bda21208ef83d5e74c0aee72ed93fed90538a5267b45ab0/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:24302eb7d9085da80f016e7e4ae55417e412fb7e0a8021e95e3b60c67cde557d","sha256:f708a7a9f7c5c0a96808722953b9f18941b0e97560ce75ab22b955f30903c125"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"}}[\n]"
2024-09-06 11:14:03,930 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:03,930 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:03,930 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:03,931 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:03,931 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:03,931 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,931 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,931 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Length: 1781
2024-09-06 11:14:03,931 (MainClientExec.java:126) DEBUG : ex-0000000F: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,932 (InternalExecRuntime.java:255) DEBUG : ep-0000000E: releasing valid endpoint
2024-09-06 11:14:03,932 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000000E: releasing endpoint
2024-09-06 11:14:03,932 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000000E: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,932 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000000E: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,932 (AbstrDockerCmd.java:32) DEBUG : Cmd:
2024-09-06 11:14:03,932 (InternalHttpClient.java:172) DEBUG : ex-00000010: preparing request execution
2024-09-06 11:14:03,933 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,933 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,933 (ProtocolExec.java:161) DEBUG : ex-00000010: target auth state: UNCHALLENGED
2024-09-06 11:14:03,933 (ProtocolExec.java:167) DEBUG : ex-00000010: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,933 (ConnectExec.java:116) DEBUG : ex-00000010: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,933 (InternalExecRuntime.java:101) DEBUG : ex-00000010: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,933 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000010: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,933 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000010: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,933 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000010: acquired ep-0000000F
2024-09-06 11:14:03,934 (InternalExecRuntime.java:120) DEBUG : ex-00000010: acquired endpoint ep-0000000F
2024-09-06 11:14:03,934 (MainClientExec.java:102) DEBUG : ex-00000010: executing GET /v1.32/version HTTP/1.1
2024-09-06 11:14:03,934 (InternalExecRuntime.java:213) DEBUG : ep-0000000F: start execution ex-00000010
2024-09-06 11:14:03,934 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000000F: executing exchange ex-00000010 over http-outgoing-1
2024-09-06 11:14:03,934 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/version HTTP/1.1
2024-09-06 11:14:03,934 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:03,934 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,934 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,934 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,934 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:03,934 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/version HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,934 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Length: 856[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,940 (Wire.java:92) DEBUG : http-outgoing-1 << "{"Platform":{"Name":"Docker Engine - Community"},"Components":[{"Name":"Engine","Version":"24.0.6","Details":{"ApiVersion":"1.43","Arch":"amd64","BuildTime":"2023-09-04T12:32:12.000000000+00:00","Experimental":"false","GitCommit":"1a79695","GoVersion":"go1.20.7","KernelVersion":"5.15.133.1-microsoft-standard-WSL2","MinAPIVersion":"1.12","Os":"linux"}},{"Name":"containerd","Version":"1.6.22","Details":{"GitCommit":"8165feabfdfe38c65b599c4993d227328c231fca"}},{"Name":"runc","Version":"1.1.8","Details":{"GitCommit":"v1.1.8-0-g82f18fe"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"Version":"24.0.6","ApiVersion":"1.43","MinAPIVersion":"1.12","GitCommit":"1a79695","GoVersion":"go1.20.7","Os":"linux","Arch":"amd64","KernelVersion":"5.15.133.1-microsoft-standard-WSL2","BuildTime":"2023-09-04T12:32:12.000000000+00:00"}[\n]"
2024-09-06 11:14:03,940 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:03,940 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:03,940 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:03,940 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:03,940 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:03,941 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,941 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,941 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Length: 856
2024-09-06 11:14:03,941 (MainClientExec.java:126) DEBUG : ex-00000010: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,941 (InternalExecRuntime.java:255) DEBUG : ep-0000000F: releasing valid endpoint
2024-09-06 11:14:03,941 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000000F: releasing endpoint
2024-09-06 11:14:03,941 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000000F: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,941 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000000F: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,950 (ExecInContainerPattern.java:146) DEBUG : /gifted_wing: Running "exec" command: /bin/sh -c while true; do ( true  &&  (grep -i ':0*16' /proc/net/tcp* || nc -vz -w 1 localhost 22 || /bin/bash -c '</dev/tcp/localhost/22') ) && exit 0 || sleep 0.1; done
2024-09-06 11:14:03,950 (AbstrDockerCmd.java:32) DEBUG : Cmd: e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42,false
2024-09-06 11:14:03,951 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json], queryParams={}}
2024-09-06 11:14:03,951 (InternalHttpClient.java:172) DEBUG : ex-00000011: preparing request execution
2024-09-06 11:14:03,951 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,951 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,951 (ProtocolExec.java:161) DEBUG : ex-00000011: target auth state: UNCHALLENGED
2024-09-06 11:14:03,951 (ProtocolExec.java:167) DEBUG : ex-00000011: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,951 (ConnectExec.java:116) DEBUG : ex-00000011: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,951 (InternalExecRuntime.java:101) DEBUG : ex-00000011: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,952 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000011: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,952 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000011: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,952 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000011: acquired ep-00000010
2024-09-06 11:14:03,952 (InternalExecRuntime.java:120) DEBUG : ex-00000011: acquired endpoint ep-00000010
2024-09-06 11:14:03,952 (MainClientExec.java:102) DEBUG : ex-00000011: executing GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:03,952 (InternalExecRuntime.java:213) DEBUG : ep-00000010: start execution ex-00000011
2024-09-06 11:14:03,952 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000010: executing exchange ex-00000011 over http-outgoing-1
2024-09-06 11:14:03,952 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:03,952 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:03,952 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,952 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,952 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,952 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:03,952 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:03,952 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,953 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,953 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,953 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,953 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,953 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,953 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,953 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:03,953 (AbstrDockerCmd.java:32) DEBUG : Cmd: true,<null>,true,{/bin/sh,-c,while true; do ( true  &&  (grep -i ':0*16' /proc/net/tcp* || nc -vz -w 1 localhost 22 || /bin/bash -c '</dev/tcp/localhost/22') ) && exit 0 || sleep 0.1; done},e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42,<null>,<null>,<null>,<null>,<null>
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:92) DEBUG : http-outgoing-1 << "1561[\r][\n]"
2024-09-06 11:14:03,954 (Wire.java:106) DEBUG : http-outgoing-1 << "{"Id":"e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42","Created":"2024-09-06T09:14:03.363842072Z","Path":"sh","Args":["-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"State":{"Status":"running","Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":39032,"ExitCode":0,"Error":"","StartedAt":"2024-09-06T09:14:03.944814108Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227","ResolvConfPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/resolv.conf","HostnamePath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hostname","HostsPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hosts","LogPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42-json.log","Name":"/gifted_wing","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":null,"HostConfig":{"Binds":[],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"22/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":false,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":[],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":null,"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":["/proc/asound","/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware"],"ReadonlyPaths":["/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"]},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241-init/diff:/var/lib/docker/overlay2/e28b30c29b08e2926bda21208ef83d5e74c0aee72ed93fed90538a5267b45ab0/diff:/var/lib/docker/overlay2/4d7cb413ac8d21062fde7ba4a60e9188a5d593092022f21ff5d7764688ed4873/diff","MergedDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/merged","UpperDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/diff","WorkDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/work"},"Name":"overlay2"},"Mounts":[],"Config":{"Hostname":"e4181d77bfe4","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"22/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PASSWORD=933e271a-0a42-4e38-b7c0-edf811ad230f","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin"
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,954 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Transfer-Encoding: chunked
2024-09-06 11:14:03,955 (MainClientExec.java:126) DEBUG : ex-00000011: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,955 (Wire.java:92) DEBUG : http-outgoing-1 << ":/bin"],"Cmd":["sh","-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"Image":"testcontainers/sshd:1.1.0","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"dedfb9d03f2f50c51e2bc6b90eafc7ad1468630df252ec6662cf5c463b70a1b1","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{"22/tcp":[{"HostIp":"0.0.0.0","HostPort":"32799"},{"HostIp":"::","HostPort":"32799"}]},"SandboxKey":"/var/run/docker/netns/dedfb9d03f2f","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","MacAddress":"02:42:ac:11:00:03","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"02:42:ac:11:00:03","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:03,955 (InternalHttpClient.java:172) DEBUG : ex-00000012: preparing request execution
2024-09-06 11:14:03,956 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,956 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,956 (ProtocolExec.java:161) DEBUG : ex-00000012: target auth state: UNCHALLENGED
2024-09-06 11:14:03,956 (ProtocolExec.java:167) DEBUG : ex-00000012: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,956 (ConnectExec.java:116) DEBUG : ex-00000012: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,956 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,956 (InternalExecRuntime.java:101) DEBUG : ex-00000012: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,956 (Wire.java:92) DEBUG : http-outgoing-1 << "0[\r][\n]"
2024-09-06 11:14:03,956 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:03,956 (InternalExecRuntime.java:255) DEBUG : ep-00000010: releasing valid endpoint
2024-09-06 11:14:03,956 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000012: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:03,956 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000010: releasing endpoint
2024-09-06 11:14:03,956 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000012: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:03,956 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000010: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,956 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000010: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:03,956 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000012: acquired ep-00000011
2024-09-06 11:14:03,956 (InternalExecRuntime.java:120) DEBUG : ex-00000012: acquired endpoint ep-00000011
2024-09-06 11:14:03,956 (ConnectExec.java:123) DEBUG : ex-00000012: opening connection {}->http://localhost:2375
2024-09-06 11:14:03,957 (InternalExecRuntime.java:162) DEBUG : ep-00000011: connecting endpoint (3 MINUTES)
2024-09-06 11:14:03,957 (PoolingHttpClientConnectionManager.java:405) DEBUG : ep-00000011: connecting endpoint to http://localhost:2375 (3 MINUTES)
2024-09-06 11:14:03,957 (DefaultHttpClientConnectionOperator.java:145) DEBUG : http-outgoing-2: connecting to localhost/127.0.0.1:2375
2024-09-06 11:14:03,958 (DefaultHttpClientConnectionOperator.java:151) DEBUG : http-outgoing-2: connection established 127.0.0.1:42938<->127.0.0.1:2375
2024-09-06 11:14:03,958 (PoolingHttpClientConnectionManager.java:417) DEBUG : ep-00000011: connected http-outgoing-2
2024-09-06 11:14:03,958 (InternalExecRuntime.java:166) DEBUG : ep-00000011: endpoint connected
2024-09-06 11:14:03,958 (MainClientExec.java:102) DEBUG : ex-00000012: executing POST /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/exec HTTP/1.1
2024-09-06 11:14:03,958 (InternalExecRuntime.java:213) DEBUG : ep-00000011: start execution ex-00000012
2024-09-06 11:14:03,958 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000011: executing exchange ex-00000012 over http-outgoing-2
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-2 >> POST /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/exec HTTP/1.1
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> accept: application/json
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> content-type: application/json
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Content-Length: 396
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Host: localhost:2375
2024-09-06 11:14:03,958 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Connection: keep-alive
2024-09-06 11:14:03,958 (Wire.java:92) DEBUG : http-outgoing-2 >> "POST /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/exec HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,958 (Wire.java:92) DEBUG : http-outgoing-2 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,958 (Wire.java:92) DEBUG : http-outgoing-2 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:92) DEBUG : http-outgoing-2 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:92) DEBUG : http-outgoing-2 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:92) DEBUG : http-outgoing-2 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:92) DEBUG : http-outgoing-2 >> "Content-Length: 396[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:92) DEBUG : http-outgoing-2 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:92) DEBUG : http-outgoing-2 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:92) DEBUG : http-outgoing-2 >> "[\r][\n]"
2024-09-06 11:14:03,959 (Wire.java:106) DEBUG : http-outgoing-2 >> "{"containerId":"e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42","AttachStdin":null,"AttachStdout":true,"AttachStderr":true,"Tty":null,"Privileged":null,"User":null,"Cmd":["/bin/sh","-c","while true; do ( true  &&  (grep -i ':0*16' /proc/net/tcp* || nc -vz -w 1 localhost 22 || /bin/bash -c '</dev/tcp/localhost/22') ) && exit 0 || sleep 0.1; done"],"Env":null,"WorkingDir":null}"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "HTTP/1.1 201 Created[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "Date: Fri, 06 Sep 2024 09:14:03 GMT[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "Content-Length: 74[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "[\r][\n]"
2024-09-06 11:14:03,963 (Wire.java:92) DEBUG : http-outgoing-2 << "{"Id":"d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df"}[\n]"
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-2 << HTTP/1.1 201 Created
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Api-Version: 1.43
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Content-Type: application/json
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Docker-Experimental: false
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Ostype: linux
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Date: Fri, 06 Sep 2024 09:14:03 GMT
2024-09-06 11:14:03,963 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Content-Length: 74
2024-09-06 11:14:03,963 (MainClientExec.java:126) DEBUG : ex-00000012: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:03,965 (InternalExecRuntime.java:255) DEBUG : ep-00000011: releasing valid endpoint
2024-09-06 11:14:03,965 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000011: releasing endpoint
2024-09-06 11:14:03,965 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000011: connection http-outgoing-2 can be kept alive for 3 MINUTES
2024-09-06 11:14:03,965 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000011: connection released [route: {}->http://localhost:2375][total available: 2; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:03,970 (InternalHttpClient.java:172) DEBUG : ex-00000013: preparing request execution
2024-09-06 11:14:03,970 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:03,970 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:03,971 (ProtocolExec.java:161) DEBUG : ex-00000013: target auth state: UNCHALLENGED
2024-09-06 11:14:03,971 (ProtocolExec.java:167) DEBUG : ex-00000013: proxy auth state: UNCHALLENGED
2024-09-06 11:14:03,971 (ConnectExec.java:116) DEBUG : ex-00000013: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:03,971 (InternalExecRuntime.java:101) DEBUG : ex-00000013: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:03,971 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000013: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 2; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:03,971 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000013: endpoint leased [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:03,971 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000013: acquired ep-00000012
2024-09-06 11:14:03,971 (InternalExecRuntime.java:120) DEBUG : ex-00000013: acquired endpoint ep-00000012
2024-09-06 11:14:03,971 (MainClientExec.java:102) DEBUG : ex-00000013: executing POST /v1.32/exec/d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df/start HTTP/1.1
2024-09-06 11:14:03,972 (InternalExecRuntime.java:213) DEBUG : ep-00000012: start execution ex-00000013
2024-09-06 11:14:03,972 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000012: executing exchange ex-00000013 over http-outgoing-2
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-2 >> POST /v1.32/exec/d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df/start HTTP/1.1
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> accept: application/json
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> content-type: application/json
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Content-Length: 26
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Host: localhost:2375
2024-09-06 11:14:03,972 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-2 >> Connection: keep-alive
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "POST /v1.32/exec/d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df/start HTTP/1.1[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "Content-Length: 26[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:92) DEBUG : http-outgoing-2 >> "[\r][\n]"
2024-09-06 11:14:03,972 (Wire.java:106) DEBUG : http-outgoing-2 >> "{"Detach":null,"Tty":null}"
2024-09-06 11:14:03,974 (Wire.java:92) DEBUG : http-outgoing-2 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:03,974 (Wire.java:92) DEBUG : http-outgoing-2 << "Content-Type: application/vnd.docker.raw-stream[\r][\n]"
2024-09-06 11:14:03,974 (Wire.java:92) DEBUG : http-outgoing-2 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:03,974 (Wire.java:92) DEBUG : http-outgoing-2 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:03,974 (Wire.java:92) DEBUG : http-outgoing-2 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:03,974 (Wire.java:92) DEBUG : http-outgoing-2 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:03,974 (Wire.java:92) DEBUG : http-outgoing-2 << "[\r][\n]"
2024-09-06 11:14:03,974 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-2 << HTTP/1.1 200 OK
2024-09-06 11:14:03,974 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Content-Type: application/vnd.docker.raw-stream
2024-09-06 11:14:03,974 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Api-Version: 1.43
2024-09-06 11:14:03,974 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Docker-Experimental: false
2024-09-06 11:14:03,974 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Ostype: linux
2024-09-06 11:14:03,974 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-2 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:04,065 (AbstrDockerCmd.java:32) DEBUG : Cmd: e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42,false
2024-09-06 11:14:04,065 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json], queryParams={}}
2024-09-06 11:14:04,066 (InternalHttpClient.java:172) DEBUG : ex-00000014: preparing request execution
2024-09-06 11:14:04,066 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:04,066 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:04,066 (ProtocolExec.java:161) DEBUG : ex-00000014: target auth state: UNCHALLENGED
2024-09-06 11:14:04,066 (ProtocolExec.java:167) DEBUG : ex-00000014: proxy auth state: UNCHALLENGED
2024-09-06 11:14:04,066 (ConnectExec.java:116) DEBUG : ex-00000014: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:04,066 (InternalExecRuntime.java:101) DEBUG : ex-00000014: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:04,067 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000014: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:04,067 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000014: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:04,067 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000014: acquired ep-00000013
2024-09-06 11:14:04,067 (InternalExecRuntime.java:120) DEBUG : ex-00000014: acquired endpoint ep-00000013
2024-09-06 11:14:04,067 (MainClientExec.java:102) DEBUG : ex-00000014: executing GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:04,067 (InternalExecRuntime.java:213) DEBUG : ep-00000013: start execution ex-00000014
2024-09-06 11:14:04,067 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000013: executing exchange ex-00000014 over http-outgoing-1
2024-09-06 11:14:04,067 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:04,067 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:04,067 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:04,067 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:04,067 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:04,067 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:04,068 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:04,068 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:04 GMT[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,098 (Wire.java:92) DEBUG : http-outgoing-1 << "15a1[\r][\n]"
2024-09-06 11:14:04,099 (Wire.java:106) DEBUG : http-outgoing-1 << "{"Id":"e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42","Created":"2024-09-06T09:14:03.363842072Z","Path":"sh","Args":["-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"State":{"Status":"running","Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":39032,"ExitCode":0,"Error":"","StartedAt":"2024-09-06T09:14:03.944814108Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227","ResolvConfPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/resolv.conf","HostnamePath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hostname","HostsPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hosts","LogPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42-json.log","Name":"/gifted_wing","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":["d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df"],"HostConfig":{"Binds":[],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"22/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":false,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":[],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":null,"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":["/proc/asound","/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware"],"ReadonlyPaths":["/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"]},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241-init/diff:/var/lib/docker/overlay2/e28b30c29b08e2926bda21208ef83d5e74c0aee72ed93fed90538a5267b45ab0/diff:/var/lib/docker/overlay2/4d7cb413ac8d21062fde7ba4a60e9188a5d593092022f21ff5d7764688ed4873/diff","MergedDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/merged","UpperDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/diff","WorkDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/work"},"Name":"overlay2"},"Mounts":[],"Config":{"Hostname":"e4181d77bfe4","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"22/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PASSWORD=933e271a-0a42-4e38-b7c0-edf811ad230"
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:04 GMT
2024-09-06 11:14:04,099 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Transfer-Encoding: chunked
2024-09-06 11:14:04,099 (MainClientExec.java:126) DEBUG : ex-00000014: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:04,099 (Wire.java:92) DEBUG : http-outgoing-1 << "f","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["sh","-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"Image":"testcontainers/sshd:1.1.0","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"dedfb9d03f2f50c51e2bc6b90eafc7ad1468630df252ec6662cf5c463b70a1b1","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{"22/tcp":[{"HostIp":"0.0.0.0","HostPort":"32799"},{"HostIp":"::","HostPort":"32799"}]},"SandboxKey":"/var/run/docker/netns/dedfb9d03f2f","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","MacAddress":"02:42:ac:11:00:03","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"02:42:ac:11:00:03","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:04,101 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,101 (Wire.java:92) DEBUG : http-outgoing-1 << "0[\r][\n]"
2024-09-06 11:14:04,101 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,101 (InternalExecRuntime.java:255) DEBUG : ep-00000013: releasing valid endpoint
2024-09-06 11:14:04,101 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000013: releasing endpoint
2024-09-06 11:14:04,101 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000013: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:04,101 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000013: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:04,142 (Wire.java:92) DEBUG : http-outgoing-2 << "[0x1][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffa4]/proc/net/tcp:   0: 00000000:0016 00000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 151484 1 0000000000000000 100 0 0 10 0                    [\n]"
2024-09-06 11:14:04,143 (Wire.java:106) DEBUG : http-outgoing-2 << "end of stream"
2024-09-06 11:14:04,143 (DefaultManagedHttpClientConnection.java:143) DEBUG : http-outgoing-2: close connection IMMEDIATE
2024-09-06 11:14:04,144 (InternalExecRuntime.java:239) DEBUG : ep-00000012: endpoint closed
2024-09-06 11:14:04,144 (InternalExecRuntime.java:243) DEBUG : ep-00000012: discarding endpoint
2024-09-06 11:14:04,144 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000012: releasing endpoint
2024-09-06 11:14:04,144 (PoolingHttpClientConnectionManager.java:372) DEBUG : ep-00000012: connection is not kept alive
2024-09-06 11:14:04,144 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000012: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,145 (AbstrDockerCmd.java:32) DEBUG : Cmd: d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df
2024-09-06 11:14:04,146 (InspectExecCmdExec.java:25) DEBUG : GET: DefaultWebTarget{path=[/exec/d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df/json], queryParams={}}
2024-09-06 11:14:04,146 (InternalHttpClient.java:172) DEBUG : ex-00000015: preparing request execution
2024-09-06 11:14:04,146 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:04,147 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:04,147 (ProtocolExec.java:161) DEBUG : ex-00000015: target auth state: UNCHALLENGED
2024-09-06 11:14:04,147 (ProtocolExec.java:167) DEBUG : ex-00000015: proxy auth state: UNCHALLENGED
2024-09-06 11:14:04,147 (ConnectExec.java:116) DEBUG : ex-00000015: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:04,147 (InternalExecRuntime.java:101) DEBUG : ex-00000015: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:04,147 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000015: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,147 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000015: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,147 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000015: acquired ep-00000014
2024-09-06 11:14:04,147 (InternalExecRuntime.java:120) DEBUG : ex-00000015: acquired endpoint ep-00000014
2024-09-06 11:14:04,147 (MainClientExec.java:102) DEBUG : ex-00000015: executing GET /v1.32/exec/d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df/json HTTP/1.1
2024-09-06 11:14:04,147 (InternalExecRuntime.java:213) DEBUG : ep-00000014: start execution ex-00000015
2024-09-06 11:14:04,147 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000014: executing exchange ex-00000015 over http-outgoing-1
2024-09-06 11:14:04,147 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/exec/d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df/json HTTP/1.1
2024-09-06 11:14:04,147 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:04,147 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:04,147 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:04,148 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:04,148 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:04,148 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/exec/d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:04,148 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:04 GMT[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Length: 537[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,149 (Wire.java:92) DEBUG : http-outgoing-1 << "{"ID":"d5ac7f3e651f689f42be135a5fd8a83d9677dfdabce22ac7dfa582976870e8df","Running":false,"ExitCode":0,"ProcessConfig":{"tty":false,"entrypoint":"/bin/sh","arguments":["-c","while true; do ( true  &&  (grep -i ':0*16' /proc/net/tcp* || nc -vz -w 1 localhost 22 || /bin/bash -c '</dev/tcp/localhost/22') ) && exit 0 || sleep 0.1; done"],"privileged":false},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"CanRemove":false,"ContainerID":"e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42","DetachKeys":"","Pid":39074}[\n]"
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:04 GMT
2024-09-06 11:14:04,149 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Length: 537
2024-09-06 11:14:04,150 (MainClientExec.java:126) DEBUG : ex-00000015: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:04,154 (InternalExecRuntime.java:255) DEBUG : ep-00000014: releasing valid endpoint
2024-09-06 11:14:04,154 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000014: releasing endpoint
2024-09-06 11:14:04,154 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000014: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:04,154 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000014: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,155 (HostPortWaitStrategy.java:72) DEBUG : Internal port check passed for [22] in PT0.2066488S
2024-09-06 11:14:04,236 (AbstrDockerCmd.java:32) DEBUG : Cmd: e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42,false
2024-09-06 11:14:04,236 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json], queryParams={}}
2024-09-06 11:14:04,237 (InternalHttpClient.java:172) DEBUG : ex-00000016: preparing request execution
2024-09-06 11:14:04,237 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:04,237 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:04,237 (ProtocolExec.java:161) DEBUG : ex-00000016: target auth state: UNCHALLENGED
2024-09-06 11:14:04,238 (ProtocolExec.java:167) DEBUG : ex-00000016: proxy auth state: UNCHALLENGED
2024-09-06 11:14:04,238 (ConnectExec.java:116) DEBUG : ex-00000016: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:04,238 (InternalExecRuntime.java:101) DEBUG : ex-00000016: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:04,238 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000016: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,239 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000016: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,239 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000016: acquired ep-00000015
2024-09-06 11:14:04,239 (InternalExecRuntime.java:120) DEBUG : ex-00000016: acquired endpoint ep-00000015
2024-09-06 11:14:04,239 (MainClientExec.java:102) DEBUG : ex-00000016: executing GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:04,239 (InternalExecRuntime.java:213) DEBUG : ep-00000015: start execution ex-00000016
2024-09-06 11:14:04,239 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000015: executing exchange ex-00000016 over http-outgoing-1
2024-09-06 11:14:04,239 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1
2024-09-06 11:14:04,239 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:04,239 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:04,239 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:04,239 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:04,239 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:04,239 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:04,239 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:04,239 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:04,239 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:04,239 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:04,240 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:04,240 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:04,240 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:04,240 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:04 GMT[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:92) DEBUG : http-outgoing-1 << "1561[\r][\n]"
2024-09-06 11:14:04,241 (Wire.java:106) DEBUG : http-outgoing-1 << "{"Id":"e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42","Created":"2024-09-06T09:14:03.363842072Z","Path":"sh","Args":["-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"State":{"Status":"running","Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":39032,"ExitCode":0,"Error":"","StartedAt":"2024-09-06T09:14:03.944814108Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"sha256:de24b5ae72951a042af5350c701c4e5f18152b42292d8d756f712e67efab3227","ResolvConfPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/resolv.conf","HostnamePath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hostname","HostsPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/hosts","LogPath":"/var/lib/docker/containers/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42/e4181d77bfe408a1e033df201953ead19bd1699eecdc13b0444ce025040aff42-json.log","Name":"/gifted_wing","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":null,"HostConfig":{"Binds":[],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"22/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":false,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":[],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":null,"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":["/proc/asound","/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware"],"ReadonlyPaths":["/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"]},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241-init/diff:/var/lib/docker/overlay2/e28b30c29b08e2926bda21208ef83d5e74c0aee72ed93fed90538a5267b45ab0/diff:/var/lib/docker/overlay2/4d7cb413ac8d21062fde7ba4a60e9188a5d593092022f21ff5d7764688ed4873/diff","MergedDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/merged","UpperDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/diff","WorkDir":"/var/lib/docker/overlay2/2c3a5430c9c266dfc6418b5ce5115f056cef3d4143d9cb679e57e24b4d13f241/work"},"Name":"overlay2"},"Mounts":[],"Config":{"Hostname":"e4181d77bfe4","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"22/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PASSWORD=933e271a-0a42-4e38-b7c0-edf811ad230f","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin"
2024-09-06 11:14:04,241 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:04,241 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:04,241 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:04,241 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:04,241 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:04,241 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:04,242 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:04 GMT
2024-09-06 11:14:04,242 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Transfer-Encoding: chunked
2024-09-06 11:14:04,242 (MainClientExec.java:126) DEBUG : ex-00000016: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:04,242 (Wire.java:92) DEBUG : http-outgoing-1 << ":/bin"],"Cmd":["sh","-c","echo \"root:$PASSWORD\" | chpasswd && /usr/sbin/sshd -D -o PermitRootLogin=yes -o AddressFamily=inet -o GatewayPorts=yes -o AllowAgentForwarding=yes -o AllowTcpForwarding=yes -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa "],"Image":"testcontainers/sshd:1.1.0","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"dedfb9d03f2f50c51e2bc6b90eafc7ad1468630df252ec6662cf5c463b70a1b1","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{"22/tcp":[{"HostIp":"0.0.0.0","HostPort":"32799"},{"HostIp":"::","HostPort":"32799"}]},"SandboxKey":"/var/run/docker/netns/dedfb9d03f2f","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","MacAddress":"02:42:ac:11:00:03","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"50ff199b93af2b831c48b3e847717763d76c5060cb04c7ee8fbba164766d5fba","Gateway":"172.17.0.1","IPAddress":"172.17.0.3","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"02:42:ac:11:00:03","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:04,243 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,243 (Wire.java:92) DEBUG : http-outgoing-1 << "0[\r][\n]"
2024-09-06 11:14:04,243 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,243 (InternalExecRuntime.java:255) DEBUG : ep-00000015: releasing valid endpoint
2024-09-06 11:14:04,244 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000015: releasing endpoint
2024-09-06 11:14:04,244 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000015: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:04,244 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000015: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,245 (HostPortWaitStrategy.java:93) DEBUG : External port check passed for [22] mapped as [32799] in PT0.2968139S
2024-09-06 11:14:04,245 (GenericContainer.java:543)  INFO : Container testcontainers/sshd:1.1.0 started in PT1.8274221S
2024-09-06 11:14:04,513 (AbstrDockerCmd.java:32) DEBUG : Cmd: org.testcontainers.shaded.com.github.dockerjava.core.command.CreateContainerCmdImpl@7acfb656[aliases=<null>,argsEscaped=<null>,attachStderr=<null>,attachStdin=<null>,attachStdout=<null>,authConfig=AuthConfig(username=eraonel, email=null, registryAddress=https://index.docker.io/v1/, stackOrchestrator=null),cmd={},domainName=<null>,entrypoint=<null>,env={},exposedPorts=ExposedPorts(exposedPorts=[830/tcp]),healthcheck=<null>,hostConfig=HostConfig(binds=[], blkioWeight=null, blkioWeightDevice=null, blkioDeviceReadBps=null, blkioDeviceWriteBps=null, blkioDeviceReadIOps=null, blkioDeviceWriteIOps=null, memorySwappiness=null, nanoCPUs=null, capAdd=null, capDrop=null, containerIDFile=null, cpuPeriod=null, cpuRealtimePeriod=null, cpuRealtimeRuntime=null, cpuShares=null, cpuQuota=null, cpusetCpus=null, cpusetMems=null, devices=null, deviceCgroupRules=null, deviceRequests=null, diskQuota=null, dns=null, dnsOptions=null, dnsSearch=null, extraHosts=[host.testcontainers.internal:172.17.0.3], groupAdd=null, ipcMode=null, cgroup=null, links=[], logConfig=LogConfig(type=null, config=null), lxcConf=null, memory=null, memorySwap=null, memoryReservation=null, kernelMemory=null, networkMode=null, oomKillDisable=null, init=null, autoRemove=null, oomScoreAdj=null, portBindings={830/tcp=[Lcom.github.dockerjava.api.model.Ports$Binding;@25a5c7db}, privileged=null, publishAllPorts=null, readonlyRootfs=null, restartPolicy=null, ulimits=null, cpuCount=null, cpuPercent=null, ioMaximumIOps=null, ioMaximumBandwidth=null, volumesFrom=[], mounts=null, pidMode=null, isolation=null, securityOpts=null, storageOpt=null, cgroupParent=null, volumeDriver=null, shmSize=null, pidsLimit=null, runtime=null, tmpFs=null, utSMode=null, usernsMode=null, sysctls=null, consoleSize=null, cgroupnsMode=null),hostName=<null>,image=netopeer2:latest,ipv4Address=<null>,ipv6Address=<null>,labels={org.testcontainers=true, org.testcontainers.lang=java, org.testcontainers.version=1.19.0, org.testcontainers.sessionId=10d076da-69b9-4af4-aabf-8a5e4512253d},macAddress=<null>,name=<null>,networkDisabled=<null>,networkingConfig=<null>,onBuild=<null>,platform=<null>,portSpecs=<null>,shell=<null>,stdInOnce=<null>,stdinOpen=<null>,stopSignal=<null>,stopTimeout=<null>,tty=<null>,user=<null>,volumes=Volumes(volumes=[]),workingDir=<null>]
2024-09-06 11:14:04,515 (InternalHttpClient.java:172) DEBUG : ex-00000017: preparing request execution
2024-09-06 11:14:04,515 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:04,515 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:04,516 (ProtocolExec.java:161) DEBUG : ex-00000017: target auth state: UNCHALLENGED
2024-09-06 11:14:04,516 (ProtocolExec.java:167) DEBUG : ex-00000017: proxy auth state: UNCHALLENGED
2024-09-06 11:14:04,516 (ConnectExec.java:116) DEBUG : ex-00000017: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:04,516 (InternalExecRuntime.java:101) DEBUG : ex-00000017: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:04,517 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000017: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,517 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000017: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,517 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000017: acquired ep-00000016
2024-09-06 11:14:04,517 (InternalExecRuntime.java:120) DEBUG : ex-00000017: acquired endpoint ep-00000016
2024-09-06 11:14:04,517 (MainClientExec.java:102) DEBUG : ex-00000017: executing POST /v1.32/containers/create HTTP/1.1
2024-09-06 11:14:04,517 (InternalExecRuntime.java:213) DEBUG : ep-00000016: start execution ex-00000017
2024-09-06 11:14:04,517 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000016: executing exchange ex-00000017 over http-outgoing-1
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> POST /v1.32/containers/create HTTP/1.1
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> X-Registry-Auth: eyJ1c2VybmFtZSI6ImVyYW9uZWwiLCJwYXNzd29yZCI6ImRja3JfcGF0X29kN1FHQ19GMGhfelR5eG5Mc25ROTh4RXlLNCIsImVtYWlsIjpudWxsLCJzZXJ2ZXJhZGRyZXNzIjoiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIiwiYXV0aCI6bnVsbCwicmVnaXN0cnl0b2tlbiI6bnVsbCwiaWRlbnRpdHl0b2tlbiI6bnVsbCwic3RhY2tPcmNoZXN0cmF0b3IiOm51bGx9
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> content-type: application/json
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Content-Length: 2008
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:04,517 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "POST /v1.32/containers/create HTTP/1.1[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "X-Registry-Auth: eyJ1c2VybmFtZSI6ImVyYW9uZWwiLCJwYXNzd29yZCI6ImRja3JfcGF0X29kN1FHQ19GMGhfelR5eG5Mc25ROTh4RXlLNCIsImVtYWlsIjpudWxsLCJzZXJ2ZXJhZGRyZXNzIjoiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIiwiYXV0aCI6bnVsbCwicmVnaXN0cnl0b2tlbiI6bnVsbCwiaWRlbnRpdHl0b2tlbiI6bnVsbCwic3RhY2tPcmNoZXN0cmF0b3IiOm51bGx9[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "Content-Length: 2008[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:04,517 (Wire.java:106) DEBUG : http-outgoing-1 >> "{"Hostname":null,"Domainname":null,"User":null,"AttachStdin":null,"AttachStdout":null,"AttachStderr":null,"PortSpecs":null,"Tty":null,"OpenStdin":null,"StdinOnce":null,"Env":[],"Cmd":[],"Healthcheck":null,"ArgsEscaped":null,"Entrypoint":null,"Image":"netopeer2:latest","Volumes":{},"WorkingDir":null,"MacAddress":null,"OnBuild":null,"NetworkDisabled":null,"ExposedPorts":{"830/tcp":{}},"StopSignal":null,"StopTimeout":null,"HostConfig":{"Binds":[],"BlkioWeight":null,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"MemorySwappiness":null,"NanoCpus":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":null,"CpuPeriod":null,"CpuRealtimePeriod":null,"CpuRealtimeRuntime":null,"CpuShares":null,"CpuQuota":null,"CpusetCpus":null,"CpusetMems":null,"Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"DiskQuota":null,"Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":["host.testcontainers.internal:172.17.0.3"],"GroupAdd":null,"IpcMode":null,"Cgroup":null,"Links":[],"LogConfig":null,"LxcConf":null,"Memory":null,"MemorySwap":null,"MemoryReservation":null,"KernelMemory":null,"NetworkMode":null,"OomKillDisable":null,"Init":null,"AutoRemove":null,"OomScoreAdj":null,"PortBindings":{"830/tcp":[{"HostIp":"","HostPort":""}]},"Privileged":null,"PublishAllPorts":null,"ReadonlyRootfs":null,"RestartPolicy":null,"Ulimits":null,"CpuCount":null,"CpuPercent":null,"IOMaximumIOps":null,"IOMaximumBandwidth":null,"VolumesFrom":[],"Mounts":null,"PidMode":null,"Isolation":null,"SecurityOpt":null,"StorageOpt":null,"CgroupParent":null,"VolumeDriver":null,"ShmSize":null,"PidsLimit":null,"Runtime":null,"Tmpfs":null,"UTSMode":null,"UsernsMode":null,"Sysctls":null,"ConsoleSize":null,"CgroupnsMode":null},"Labels":{"org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d"},"Shell":null,"NetworkingConfig":null}"
2024-09-06 11:14:04,556 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 201 Created[\r][\n]"
2024-09-06 11:14:04,556 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:04 GMT[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Length: 88[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,557 (Wire.java:92) DEBUG : http-outgoing-1 << "{"Id":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","Warnings":[]}[\n]"
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 201 Created
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:04 GMT
2024-09-06 11:14:04,557 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Length: 88
2024-09-06 11:14:04,557 (MainClientExec.java:126) DEBUG : ex-00000017: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:04,558 (InternalExecRuntime.java:255) DEBUG : ep-00000016: releasing valid endpoint
2024-09-06 11:14:04,558 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000016: releasing endpoint
2024-09-06 11:14:04,558 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000016: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:04,558 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000016: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,560 (AbstrDockerCmd.java:32) DEBUG : Cmd: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,<null>,ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8
2024-09-06 11:14:04,561 (InternalHttpClient.java:172) DEBUG : ex-00000018: preparing request execution
2024-09-06 11:14:04,561 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:04,561 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:04,561 (ProtocolExec.java:161) DEBUG : ex-00000018: target auth state: UNCHALLENGED
2024-09-06 11:14:04,561 (ProtocolExec.java:167) DEBUG : ex-00000018: proxy auth state: UNCHALLENGED
2024-09-06 11:14:04,561 (ConnectExec.java:116) DEBUG : ex-00000018: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:04,561 (InternalExecRuntime.java:101) DEBUG : ex-00000018: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:04,562 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000018: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,562 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000018: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,562 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000018: acquired ep-00000017
2024-09-06 11:14:04,562 (InternalExecRuntime.java:120) DEBUG : ex-00000018: acquired endpoint ep-00000017
2024-09-06 11:14:04,562 (MainClientExec.java:102) DEBUG : ex-00000018: executing POST /v1.32/networks/ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8/connect HTTP/1.1
2024-09-06 11:14:04,562 (InternalExecRuntime.java:213) DEBUG : ep-00000017: start execution ex-00000018
2024-09-06 11:14:04,562 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000017: executing exchange ex-00000018 over http-outgoing-1
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> POST /v1.32/networks/ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8/connect HTTP/1.1
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> content-type: application/json
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Content-Length: 125
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:04,562 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:04,562 (Wire.java:92) DEBUG : http-outgoing-1 >> "POST /v1.32/networks/ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8/connect HTTP/1.1[\r][\n]"
2024-09-06 11:14:04,562 (Wire.java:92) DEBUG : http-outgoing-1 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:04,562 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:04,562 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:04,562 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:04,563 (Wire.java:92) DEBUG : http-outgoing-1 >> "Content-Length: 125[\r][\n]"
2024-09-06 11:14:04,563 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:04,563 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:04,563 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:04,563 (Wire.java:106) DEBUG : http-outgoing-1 >> "{"containerConfig":null,"Container":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","EndpointConfig":null}"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:04 GMT[\r][\n]"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Length: 0[\r][\n]"
2024-09-06 11:14:04,567 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:04,567 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:04,567 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:04,568 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:04,568 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:04,568 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:04,568 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:04 GMT
2024-09-06 11:14:04,568 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Length: 0
2024-09-06 11:14:04,568 (MainClientExec.java:126) DEBUG : ex-00000018: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:04,568 (InternalExecRuntime.java:255) DEBUG : ep-00000017: releasing valid endpoint
2024-09-06 11:14:04,568 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000017: releasing endpoint
2024-09-06 11:14:04,568 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000017: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:04,568 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000017: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,568 (GenericContainer.java:452)  INFO : Container netopeer2:latest is starting: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a
2024-09-06 11:14:04,569 (AbstrDockerCmd.java:32) DEBUG : Cmd: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a
2024-09-06 11:14:04,569 (InternalHttpClient.java:172) DEBUG : ex-00000019: preparing request execution
2024-09-06 11:14:04,569 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:04,569 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:04,569 (ProtocolExec.java:161) DEBUG : ex-00000019: target auth state: UNCHALLENGED
2024-09-06 11:14:04,569 (ProtocolExec.java:167) DEBUG : ex-00000019: proxy auth state: UNCHALLENGED
2024-09-06 11:14:04,569 (ConnectExec.java:116) DEBUG : ex-00000019: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:04,569 (InternalExecRuntime.java:101) DEBUG : ex-00000019: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:04,569 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000019: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,570 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000019: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:04,570 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000019: acquired ep-00000018
2024-09-06 11:14:04,570 (InternalExecRuntime.java:120) DEBUG : ex-00000019: acquired endpoint ep-00000018
2024-09-06 11:14:04,570 (MainClientExec.java:102) DEBUG : ex-00000019: executing POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/start HTTP/1.1
2024-09-06 11:14:04,570 (InternalExecRuntime.java:213) DEBUG : ep-00000018: start execution ex-00000019
2024-09-06 11:14:04,570 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000018: executing exchange ex-00000019 over http-outgoing-1
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/start HTTP/1.1
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> content-type: application/json
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:04,570 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/start HTTP/1.1[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:04,570 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:05,109 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 204 No Content[\r][\n]"
2024-09-06 11:14:05,109 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,109 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,109 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,109 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,109 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,109 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,109 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 204 No Content
2024-09-06 11:14:05,109 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:05,109 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:05,109 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:05,109 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,109 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,109 (MainClientExec.java:126) DEBUG : ex-00000019: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,109 (InternalExecRuntime.java:255) DEBUG : ep-00000018: releasing valid endpoint
2024-09-06 11:14:05,110 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000018: releasing endpoint
2024-09-06 11:14:05,110 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000018: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,110 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000018: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,112 (AbstrDockerCmd.java:32) DEBUG : Cmd: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,false
2024-09-06 11:14:05,112 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json], queryParams={}}
2024-09-06 11:14:05,112 (InternalHttpClient.java:172) DEBUG : ex-0000001B: preparing request execution
2024-09-06 11:14:05,112 (InternalHttpClient.java:172) DEBUG : ex-0000001A: preparing request execution
2024-09-06 11:14:05,112 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,112 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,112 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,112 (ProtocolExec.java:161) DEBUG : ex-0000001B: target auth state: UNCHALLENGED
2024-09-06 11:14:05,112 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,112 (ProtocolExec.java:167) DEBUG : ex-0000001B: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,112 (ProtocolExec.java:161) DEBUG : ex-0000001A: target auth state: UNCHALLENGED
2024-09-06 11:14:05,112 (ConnectExec.java:116) DEBUG : ex-0000001B: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,112 (ProtocolExec.java:167) DEBUG : ex-0000001A: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,112 (ConnectExec.java:116) DEBUG : ex-0000001A: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,112 (InternalExecRuntime.java:101) DEBUG : ex-0000001B: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,113 (InternalExecRuntime.java:101) DEBUG : ex-0000001A: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,113 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000001B: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,113 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000001A: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,113 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000001B: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,113 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000001B: acquired ep-00000019
2024-09-06 11:14:05,113 (InternalExecRuntime.java:120) DEBUG : ex-0000001B: acquired endpoint ep-00000019
2024-09-06 11:14:05,113 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000001A: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,113 (MainClientExec.java:102) DEBUG : ex-0000001B: executing GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1
2024-09-06 11:14:05,113 (InternalExecRuntime.java:213) DEBUG : ep-00000019: start execution ex-0000001B
2024-09-06 11:14:05,113 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000019: executing exchange ex-0000001B over http-outgoing-1
2024-09-06 11:14:05,113 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000001A: acquired ep-0000001A
2024-09-06 11:14:05,113 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1
2024-09-06 11:14:05,113 (InternalExecRuntime.java:120) DEBUG : ex-0000001A: acquired endpoint ep-0000001A
2024-09-06 11:14:05,113 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:05,113 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,113 (ConnectExec.java:123) DEBUG : ex-0000001A: opening connection {}->http://localhost:2375
2024-09-06 11:14:05,113 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,113 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,113 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:05,113 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,114 (InternalExecRuntime.java:162) DEBUG : ep-0000001A: connecting endpoint (3 MINUTES)
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,114 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:05,114 (PoolingHttpClientConnectionManager.java:405) DEBUG : ep-0000001A: connecting endpoint to http://localhost:2375 (3 MINUTES)
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,115 (Wire.java:92) DEBUG : http-outgoing-1 << "1d26[\r][\n]"
2024-09-06 11:14:05,115 (DefaultHttpClientConnectionOperator.java:145) DEBUG : http-outgoing-3: connecting to localhost/127.0.0.1:2375
2024-09-06 11:14:05,115 (Wire.java:106) DEBUG : http-outgoing-1 << "{"Id":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","Created":"2024-09-06T09:14:04.551871089Z","Path":"/usr/sbin/netopeer2-server","Args":["-d","-c","SSH"],"State":{"Status":"running","Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":39135,"ExitCode":0,"Error":"","StartedAt":"2024-09-06T09:14:05.132904143Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd","ResolvConfPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/resolv.conf","HostnamePath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/hostname","HostsPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/hosts","LogPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a-json.log","Name":"/beautiful_thompson","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":null,"HostConfig":{"Binds":[],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"830/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":false,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":["host.testcontainers.internal:172.17.0.3"],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":null,"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":["/proc/asound","/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware"],"ReadonlyPaths":["/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"]},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54-init/diff:/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/diff:/var/lib/docker/overlay2/a1e978227683a0c74d699bb515a59555a769cfe08431429ac07b0f98fa1212db/diff:/var/lib/docker/overlay2/d81ac57fc7a5b869fe2182c21ef61d52af192008d08b565a004dbbbd355898c8/diff:/var/lib/docker/overlay2/a01fa762a3a0fc1375ef511648f07937d60e5146b3d61e9d3bbb7d7910a14fc2/diff:/var/lib/docker/overlay2/da40b919c95987f2194bcfc0c1803b933e106fe4d197b1b8b7ffadf9e4dc56e2/diff:/var/lib/docker/overlay2/8a1f527bca8deb0c5343427d0171097906522d16801a6e9b5a70437473104ef0/diff:/var/lib/docker/overlay2/667c16009e95a4b7d5c3ff26f916548c75e8c65fd0d0d6a7f2177d6d598844fa/diff:/var/lib/docker/overlay2/2e44d3c7c20a9ea6c4e9c615bdac0198419be54c482ebab6a14fa51649c007ca/diff:/var/lib/docker/overlay2/a2d0b870c0f17eea14ade32620e70e1f3afef83d8493a8a242fe8879a39331a2/diff:/var/lib/docker/overlay2/5a6272e6569eafc40072e8a4d862df0e730021f273b525d9e2e76ab4e5f4f0c6/diff:/var/lib/docker/overlay2/36d11b7f08154e5bc7d4d6a33c6d2abb123dec6a9ed393efe262e72f35d7"
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,115 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Transfer-Encoding: chunked
2024-09-06 11:14:05,116 (MainClientExec.java:126) DEBUG : ex-0000001B: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,116 (DefaultHttpClientConnectionOperator.java:151) DEBUG : http-outgoing-3: connection established 127.0.0.1:42943<->127.0.0.1:2375
2024-09-06 11:14:05,116 (Wire.java:92) DEBUG : http-outgoing-1 << "8d1b/diff:/var/lib/docker/overlay2/64fd49538ce471e563fab65c353bfde207894aec03e10b2892d4570545ce7616/diff:/var/lib/docker/overlay2/ba2f7c137723b6123383558618d00df8a59ad7f75e2e905be3b0ee9d9a03e0a3/diff:/var/lib/docker/overlay2/d3f4e0a71673529fb2f7d8a989c9247be31aae483583f5a626625dc628c4e055/diff:/var/lib/docker/overlay2/529699c40f54fb41ef0b1d473e01035d586d153a4d8e80e31913cbc236fdc1ce/diff:/var/lib/docker/overlay2/32eaf33b06ade0250187a3c35d35d59ce448280a6df310cb0ee1a59dde9959b3/diff:/var/lib/docker/overlay2/a932ade4b3512afa0bf7f291816db0b963c499cfeb51ece2a303b2a1af347581/diff:/var/lib/docker/overlay2/02f89e2ac7bbc71b91b5079fed3c86920d73f2983077fead52bf50b66d4d36d4/diff","MergedDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/merged","UpperDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/diff","WorkDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/work"},"Name":"overlay2"},"Mounts":[],"Config":{"Hostname":"4372e1732e49","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"4334/tcp":{},"4335/tcp":{},"6513/tcp":{},"830/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","EDITOR=vim","SSH_LISTEN_XML_CONTENT=<netconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>"],"Cmd":["/usr/sbin/netopeer2-server","-d","-c","SSH"],"Image":"netopeer2:latest","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"67cafcad2dfc49e7173d9ffbb086342f1eeb5a032200da63a22c0c342125acc1","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{"4334/tcp":null,"4335/tcp":null,"6513/tcp":null,"830/tcp":[{"HostIp":"0.0.0.0","HostPort":"32800"},{"HostIp":"::","HostPort":"32800"}]},"SandboxKey":"/var/run/docker/netns/67cafcad2dfc","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"e7fca4300c7a23f993b3dde567ee0b19ab237b39dbcf7cb46e12dfe08b5c66f9","Gateway":"172.17.0.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.4","IPPrefixLen":16,"IPv6Gateway":"","MacAddress":"02:42:ac:11:00:04","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"e7fca4300c7a23f993b3dde567ee0b19ab237b39dbcf7cb46e12dfe08b5c66f9","Gateway":"172.17.0.1","IPAddress":"172.17.0.4","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"02:42:ac:11:00:04","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:05,116 (PoolingHttpClientConnectionManager.java:417) DEBUG : ep-0000001A: connected http-outgoing-3
2024-09-06 11:14:05,116 (InternalExecRuntime.java:166) DEBUG : ep-0000001A: endpoint connected
2024-09-06 11:14:05,117 (MainClientExec.java:102) DEBUG : ex-0000001A: executing GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1
2024-09-06 11:14:05,117 (InternalExecRuntime.java:213) DEBUG : ep-0000001A: start execution ex-0000001A
2024-09-06 11:14:05,117 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000001A: executing exchange ex-0000001A over http-outgoing-3
2024-09-06 11:14:05,117 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-3 >> GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1
2024-09-06 11:14:05,117 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-3 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,117 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-3 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,117 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-3 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,117 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,117 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-3 >> Host: localhost:2375
2024-09-06 11:14:05,117 (Wire.java:92) DEBUG : http-outgoing-1 << "0[\r][\n]"
2024-09-06 11:14:05,117 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,117 (InternalExecRuntime.java:255) DEBUG : ep-00000019: releasing valid endpoint
2024-09-06 11:14:05,117 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-3 >> Connection: keep-alive
2024-09-06 11:14:05,117 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000019: releasing endpoint
2024-09-06 11:14:05,117 (Wire.java:92) DEBUG : http-outgoing-3 >> "GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,117 (Wire.java:92) DEBUG : http-outgoing-3 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,118 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000019: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,118 (Wire.java:92) DEBUG : http-outgoing-3 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,118 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000019: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,118 (Wire.java:92) DEBUG : http-outgoing-3 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,118 (Wire.java:92) DEBUG : http-outgoing-3 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,118 (Wire.java:92) DEBUG : http-outgoing-3 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,118 (Wire.java:92) DEBUG : http-outgoing-3 >> "[\r][\n]"
2024-09-06 11:14:05,118 (AbstrDockerCmd.java:32) DEBUG : Cmd: sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd
2024-09-06 11:14:05,118 (InternalHttpClient.java:172) DEBUG : ex-0000001C: preparing request execution
2024-09-06 11:14:05,119 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,119 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,119 (ProtocolExec.java:161) DEBUG : ex-0000001C: target auth state: UNCHALLENGED
2024-09-06 11:14:05,119 (ProtocolExec.java:167) DEBUG : ex-0000001C: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,119 (ConnectExec.java:116) DEBUG : ex-0000001C: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,119 (InternalExecRuntime.java:101) DEBUG : ex-0000001C: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,119 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000001C: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,119 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000001C: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,119 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000001C: acquired ep-0000001B
2024-09-06 11:14:05,119 (InternalExecRuntime.java:120) DEBUG : ex-0000001C: acquired endpoint ep-0000001B
2024-09-06 11:14:05,119 (MainClientExec.java:102) DEBUG : ex-0000001C: executing GET /v1.32/images/sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd/json HTTP/1.1
2024-09-06 11:14:05,119 (InternalExecRuntime.java:213) DEBUG : ep-0000001B: start execution ex-0000001C
2024-09-06 11:14:05,119 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000001B: executing exchange ex-0000001C over http-outgoing-1
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/images/sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd/json HTTP/1.1
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/images/sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "Content-Type: application/vnd.docker.raw-stream[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:05,120 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,120 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-3 << HTTP/1.1 200 OK
2024-09-06 11:14:05,121 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-3 << Api-Version: 1.43
2024-09-06 11:14:05,121 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-3 << Content-Type: application/vnd.docker.raw-stream
2024-09-06 11:14:05,121 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-3 << Docker-Experimental: false
2024-09-06 11:14:05,121 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-3 << Ostype: linux
2024-09-06 11:14:05,121 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-3 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,121 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-3 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,121 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-3 << Transfer-Encoding: chunked
2024-09-06 11:14:05,121 (MainClientExec.java:126) DEBUG : ex-0000001A: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,121 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,121 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,121 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:05,121 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,121 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,122 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,122 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,122 (Wire.java:92) DEBUG : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:05,122 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,122 (Wire.java:92) DEBUG : http-outgoing-1 << "1aa1[\r][\n]"
2024-09-06 11:14:05,122 (Wire.java:106) DEBUG : http-outgoing-1 << "{"Id":"sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd","RepoTags":["netopeer2:latest"],"RepoDigests":[],"Parent":"sha256:2b306c370d5cdda9e40263a95fa326be8715d4f65e61b79c71360a874bd090ab","Comment":"","Created":"2024-09-06T09:14:01.846064785Z","Container":"458c654a1de78d3544d1d8e66984dfa0ecec7f1c4bb7083ef0df7fa5982eb40b","ContainerConfig":{"Hostname":"458c654a1de7","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"4334/tcp":{},"4335/tcp":{},"6513/tcp":{},"830/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","EDITOR=vim","SSH_LISTEN_XML_CONTENT=<netconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>"],"Cmd":["/bin/sh","-c","#(nop) ","LABEL org.testcontainers.version=1.19.0"],"Image":"sha256:2b306c370d5cdda9e40263a95fa326be8715d4f65e61b79c71360a874bd090ab","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"}},"DockerVersion":"24.0.6","Author":"","Config":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"4334/tcp":{},"4335/tcp":{},"6513/tcp":{},"830/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","EDITOR=vim","SSH_LISTEN_XML_CONTENT=<netconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>"],"Cmd":["/usr/sbin/netopeer2-server","-d","-c","SSH"],"Image":"sha256:2b306c370d5cdda9e40263a95fa326be8715d4f65e61b79c71360a874bd090ab","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.version":"1.19.0"}},"Architecture":"amd64","Os":"linux","Size":1680054067,"VirtualSize":1680054067,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/a1e978227683a0c74d699bb515a59555a769cfe08431429ac07b0f98fa1212db/diff:/var/lib/docker/overlay2/d81ac57fc7a5b869fe2182c21ef61d52af192008d08b565a004dbbbd355898c8/diff:/var/lib/docker/overlay2/a01fa762a3a0fc1375ef511648f07937d60e5146b3d61e9d3bbb7d7910a14fc2/diff:/var/lib/docker/overlay2/da40b919c95987f2194bcfc0c1803b933e106fe4d197b1b8b7ffadf9e4dc56e2/diff:/var/lib/docker/overlay2/8a1f527bca8deb0c5343427d0171097906522d16801a6e9b5"
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,122 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Transfer-Encoding: chunked
2024-09-06 11:14:05,122 (MainClientExec.java:126) DEBUG : ex-0000001C: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,123 (Wire.java:92) DEBUG : http-outgoing-1 << "a70437473104ef0/diff:/var/lib/docker/overlay2/667c16009e95a4b7d5c3ff26f916548c75e8c65fd0d0d6a7f2177d6d598844fa/diff:/var/lib/docker/overlay2/2e44d3c7c20a9ea6c4e9c615bdac0198419be54c482ebab6a14fa51649c007ca/diff:/var/lib/docker/overlay2/a2d0b870c0f17eea14ade32620e70e1f3afef83d8493a8a242fe8879a39331a2/diff:/var/lib/docker/overlay2/5a6272e6569eafc40072e8a4d862df0e730021f273b525d9e2e76ab4e5f4f0c6/diff:/var/lib/docker/overlay2/36d11b7f08154e5bc7d4d6a33c6d2abb123dec6a9ed393efe262e72f35d78d1b/diff:/var/lib/docker/overlay2/64fd49538ce471e563fab65c353bfde207894aec03e10b2892d4570545ce7616/diff:/var/lib/docker/overlay2/ba2f7c137723b6123383558618d00df8a59ad7f75e2e905be3b0ee9d9a03e0a3/diff:/var/lib/docker/overlay2/d3f4e0a71673529fb2f7d8a989c9247be31aae483583f5a626625dc628c4e055/diff:/var/lib/docker/overlay2/529699c40f54fb41ef0b1d473e01035d586d153a4d8e80e31913cbc236fdc1ce/diff:/var/lib/docker/overlay2/32eaf33b06ade0250187a3c35d35d59ce448280a6df310cb0ee1a59dde9959b3/diff:/var/lib/docker/overlay2/a932ade4b3512afa0bf7f291816db0b963c499cfeb51ece2a303b2a1af347581/diff:/var/lib/docker/overlay2/02f89e2ac7bbc71b91b5079fed3c86920d73f2983077fead52bf50b66d4d36d4/diff","MergedDir":"/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/merged","UpperDir":"/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/diff","WorkDir":"/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:1b9b7346fee7abbc7f5538eaa23548bd05a45abe8daf6794024be0c8ad7d60bb","sha256:8c6152afb1cb0dcfa2d5940ec64f2f8064eb745fef8793e0b8380315f4e076a0","sha256:638e4e2c43bc6614cf0265773adae983a93da8b51bca44e884dcb9a89ec29070","sha256:604d593009c040cd3a79943da953c46db9db0a793d832d899cd3dacd403b3122","sha256:baf4d09f8d59ba59a78f87eb65ae7521ef6e280793c72197a85fdfb937b91d90","sha256:23794c0dc55eeb055a16f90c68a46d335ebf5980cf855626a508cc586051dc1e","sha256:9cf2b25dc07d9b811fccb0f8c0da8795efbeb2bdcaeb91bb75a40e9bd7b62518","sha256:d169159b92eb3e2d94d32f4a269bc25de7b0ef3fcd5f79ac149929e09b7b5771","sha256:61ba812a43186bab98d11018becf09df48a8745cc631b633893d6f8edbd1c51f","sha256:2edf2487eb83298e153e5c6aaca730e86f0a89ee509c0a210958a157838e6a86","sha256:7f0a18d336fdc35ef87bfd83a3aae811bebf7ebbf91582386e163494ef380125","sha256:40c89e7fb2c4113f726fe256bc996426ef25548e33e7acaec266e141a0132816","sha256:179bbe9848d57d2e614841fa8d5f7c69a145311edd08101598669614dfc63702","sha256:5f628085a938bd6902059318a458cbb66139f7002fd6a71be8ef62989ca1db0e","sha256:f7341ed803edc92853b859f11bf622f0df0e6a9079e56024f6b74ba7b92a389e","sha256:80ef1532c68a2b4e40ead20dcde300fc0581c06787315522d3211f1eba36bdf8","sha256:1a9433e7161eb1f4677e1cb3d4bfae9985a983c4ed1b2d253a2d058d9955f5d2","sha256:3a2d146f5b374e5c0d4cf5e728d8662bb753bdc871484a380a2b6250dee4bdb0"]},"Metadata":{"LastTagTime":"2024-09-06T11:14:01.870943617+02:00"}}[\n]"
2024-09-06 11:14:05,123 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,123 (Wire.java:92) DEBUG : http-outgoing-1 << "0[\r][\n]"
2024-09-06 11:14:05,123 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,124 (InternalExecRuntime.java:255) DEBUG : ep-0000001B: releasing valid endpoint
2024-09-06 11:14:05,124 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000001B: releasing endpoint
2024-09-06 11:14:05,124 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000001B: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,124 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000001B: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,124 (AbstrDockerCmd.java:32) DEBUG : Cmd:
2024-09-06 11:14:05,124 (InternalHttpClient.java:172) DEBUG : ex-0000001D: preparing request execution
2024-09-06 11:14:05,124 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,124 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,125 (ProtocolExec.java:161) DEBUG : ex-0000001D: target auth state: UNCHALLENGED
2024-09-06 11:14:05,125 (ProtocolExec.java:167) DEBUG : ex-0000001D: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,125 (ConnectExec.java:116) DEBUG : ex-0000001D: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,125 (InternalExecRuntime.java:101) DEBUG : ex-0000001D: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,125 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000001D: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,125 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000001D: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,125 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000001D: acquired ep-0000001C
2024-09-06 11:14:05,125 (InternalExecRuntime.java:120) DEBUG : ex-0000001D: acquired endpoint ep-0000001C
2024-09-06 11:14:05,125 (MainClientExec.java:102) DEBUG : ex-0000001D: executing GET /v1.32/version HTTP/1.1
2024-09-06 11:14:05,125 (InternalExecRuntime.java:213) DEBUG : ep-0000001C: start execution ex-0000001D
2024-09-06 11:14:05,125 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000001C: executing exchange ex-0000001D over http-outgoing-1
2024-09-06 11:14:05,125 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/version HTTP/1.1
2024-09-06 11:14:05,125 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> accept: application/json
2024-09-06 11:14:05,125 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,125 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,125 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,125 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:05,125 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/version HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,126 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Length: 856[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,138 (Wire.java:92) DEBUG : http-outgoing-1 << "{"Platform":{"Name":"Docker Engine - Community"},"Components":[{"Name":"Engine","Version":"24.0.6","Details":{"ApiVersion":"1.43","Arch":"amd64","BuildTime":"2023-09-04T12:32:12.000000000+00:00","Experimental":"false","GitCommit":"1a79695","GoVersion":"go1.20.7","KernelVersion":"5.15.133.1-microsoft-standard-WSL2","MinAPIVersion":"1.12","Os":"linux"}},{"Name":"containerd","Version":"1.6.22","Details":{"GitCommit":"8165feabfdfe38c65b599c4993d227328c231fca"}},{"Name":"runc","Version":"1.1.8","Details":{"GitCommit":"v1.1.8-0-g82f18fe"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"Version":"24.0.6","ApiVersion":"1.43","MinAPIVersion":"1.12","GitCommit":"1a79695","GoVersion":"go1.20.7","Os":"linux","Arch":"amd64","KernelVersion":"5.15.133.1-microsoft-standard-WSL2","BuildTime":"2023-09-04T12:32:12.000000000+00:00"}[\n]"
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/json
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,139 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Length: 856
2024-09-06 11:14:05,139 (MainClientExec.java:126) DEBUG : ex-0000001D: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,140 (InternalExecRuntime.java:255) DEBUG : ep-0000001C: releasing valid endpoint
2024-09-06 11:14:05,140 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000001C: releasing endpoint
2024-09-06 11:14:05,140 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000001C: connection http-outgoing-1 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,140 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000001C: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,142 (InternalHttpClient.java:172) DEBUG : ex-0000001E: preparing request execution
2024-09-06 11:14:05,142 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,142 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,142 (ProtocolExec.java:161) DEBUG : ex-0000001E: target auth state: UNCHALLENGED
2024-09-06 11:14:05,142 (ProtocolExec.java:167) DEBUG : ex-0000001E: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,142 (ConnectExec.java:116) DEBUG : ex-0000001E: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,142 (InternalExecRuntime.java:101) DEBUG : ex-0000001E: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,143 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000001E: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,143 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000001E: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,143 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000001E: acquired ep-0000001D
2024-09-06 11:14:05,143 (InternalExecRuntime.java:120) DEBUG : ex-0000001E: acquired endpoint ep-0000001D
2024-09-06 11:14:05,143 (MainClientExec.java:102) DEBUG : ex-0000001E: executing GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1
2024-09-06 11:14:05,143 (InternalExecRuntime.java:213) DEBUG : ep-0000001D: start execution ex-0000001E
2024-09-06 11:14:05,143 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000001D: executing exchange ex-0000001E over http-outgoing-1
2024-09-06 11:14:05,143 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-1 >> GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1
2024-09-06 11:14:05,143 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,143 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,143 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,143 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Host: localhost:2375
2024-09-06 11:14:05,144 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-1 >> Connection: keep-alive
2024-09-06 11:14:05,144 (Wire.java:92) DEBUG : http-outgoing-1 >> "GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/logs?stdout=true&stderr=true&follow=true&since=0 HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,144 (Wire.java:92) DEBUG : http-outgoing-1 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,144 (Wire.java:92) DEBUG : http-outgoing-1 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,144 (Wire.java:92) DEBUG : http-outgoing-1 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,144 (Wire.java:92) DEBUG : http-outgoing-1 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,144 (Wire.java:92) DEBUG : http-outgoing-1 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,144 (Wire.java:92) DEBUG : http-outgoing-1 >> "[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "Content-Type: application/vnd.docker.raw-stream[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:05,145 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-1 << HTTP/1.1 200 OK
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Api-Version: 1.43
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Content-Type: application/vnd.docker.raw-stream
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Docker-Experimental: false
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Ostype: linux
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,145 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-1 << Transfer-Encoding: chunked
2024-09-06 11:14:05,145 (MainClientExec.java:126) DEBUG : ex-0000001E: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-1 << "41[\r][\n]"
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-3 << "41[\r][\n]"
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-1 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]9[INF]: SR: Datastore copied from <startup> to <running>.[\n]"
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]9[INF]: SR: Datastore copied from <startup> to <running>.[\n]"
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-1 << "29[\r][\n]"
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-1 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]![INF]: SR: Connection 1 created.[\n]"
2024-09-06 11:14:05,159 (WaitingConsumer.java:88) DEBUG : STDERR: [INF]: SR: Datastore copied from <startup> to <running>.
2024-09-06 11:14:05,159 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,159 (WaitingConsumer.java:88) DEBUG : STDERR: [INF]: SR: Connection 1 created.
2024-09-06 11:14:05,160 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Datastore copied from <startup> to <running>.
2024-09-06 11:14:05,160 (Wire.java:92) DEBUG : http-outgoing-3 << "29[\r][\n]"
2024-09-06 11:14:05,160 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]![INF]: SR: Connection 1 created.[\n]"
2024-09-06 11:14:05,160 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,160 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Connection 1 created.
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-1 << "52[\r][\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-1 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[INF]: SR: Triggering "ietf-netconf-server" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[INF]: SR: Triggering "ietf-netconf-server" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-1 << "41[\r][\n]"
2024-09-06 11:14:05,170 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Triggering "ietf-netconf-server" "done" event on enabled data.
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-1 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]9[INF]: LN: Listening on 0.0.0.0:830 for SSH connections.[\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-3 << "41[\r][\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]9[INF]: LN: Listening on 0.0.0.0:830 for SSH connections.[\n]"
2024-09-06 11:14:05,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,170 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Listening on 0.0.0.0:830 for SSH connections.
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-3 << "4c[\r][\n]"
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-1 << "4c[\r][\n]"
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]D[INF]: SR: Triggering "ietf-keystore" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-1 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]D[INF]: SR: Triggering "ietf-keystore" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,171 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Triggering "ietf-keystore" "done" event on enabled data.
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-1 << "4e[\r][\n]"
2024-09-06 11:14:05,171 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:05,172 (Wire.java:92) DEBUG : http-outgoing-1 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[INF]: SR: Triggering "ietf-truststore" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,172 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[INF]: SR: Triggering "ietf-truststore" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,172 (Wire.java:92) DEBUG : http-outgoing-1 << "[\r][\n]"
2024-09-06 11:14:05,172 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,172 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Triggering "ietf-truststore" "done" event on enabled data.
2024-09-06 11:14:05,173 (WaitingConsumer.java:88) DEBUG : STDERR: [INF]: SR: Triggering "ietf-truststore" "done" event on enabled data.
2024-09-06 11:14:05,173 (WaitingConsumer.java:88) DEBUG : STDERR: [INF]: SR: Triggering "ietf-keystore" "done" event on enabled data.
2024-09-06 11:14:05,174 (WaitingConsumer.java:88) DEBUG : STDERR: [INF]: LN: Listening on 0.0.0.0:830 for SSH connections.
2024-09-06 11:14:05,174 (InternalExecRuntime.java:278) DEBUG : ep-0000001D: cancel
2024-09-06 11:14:05,174 (DefaultManagedHttpClientConnection.java:143) DEBUG : http-outgoing-1: close connection IMMEDIATE
2024-09-06 11:14:05,174 (InternalExecRuntime.java:239) DEBUG : ep-0000001D: endpoint closed
2024-09-06 11:14:05,174 (InternalExecRuntime.java:243) DEBUG : ep-0000001D: discarding endpoint
2024-09-06 11:14:05,174 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000001D: releasing endpoint
2024-09-06 11:14:05,174 (PoolingHttpClientConnectionManager.java:372) DEBUG : ep-0000001D: connection is not kept alive
2024-09-06 11:14:05,174 (Wire.java:106) DEBUG : http-outgoing-1 << "[read] I/O error: Socket closed"
2024-09-06 11:14:05,174 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000001D: connection released [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,174 (Wire.java:106) DEBUG : http-outgoing-1 << "[read] I/O error: Socket closed"
2024-09-06 11:14:05,174 (Wire.java:106) DEBUG : http-outgoing-1 << "[read] I/O error: Socket closed"
2024-09-06 11:14:05,174 (ApacheDockerHttpClientImpl.java:260) DEBUG : Failed to close the response
java.net.SocketException: Socket closed
	at java.base/sun.nio.ch.NioSocketImpl.ensureOpenAndConnected(NioSocketImpl.java:165)
	at java.base/sun.nio.ch.NioSocketImpl.beginRead(NioSocketImpl.java:231)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:299)
	at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
	at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
	at java.base/java.net.Socket$SocketInputStream.read(Socket.java:976)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.LoggingInputStream.read(LoggingInputStream.java:81)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl.fillBuffer(SessionInputBufferImpl.java:149)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl.readLine(SessionInputBufferImpl.java:280)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.getChunkSize(ChunkedInputStream.java:261)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.nextChunk(ChunkedInputStream.java:222)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.read(ChunkedInputStream.java:147)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.close(ChunkedInputStream.java:314)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer.close(Closer.java:48)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.IncomingHttpEntity.close(IncomingHttpEntity.java:111)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.HttpEntityWrapper.close(HttpEntityWrapper.java:120)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer.close(Closer.java:48)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicClassicHttpResponse.close(BasicClassicHttpResponse.java:93)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.CloseableHttpResponse.close(CloseableHttpResponse.java:200)
	at com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl$ApacheResponse.close(ApacheDockerHttpClientImpl.java:256)
	at org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.lambda$executeAndStream$1(DefaultInvocationBuilder.java:277)
	at java.base/java.lang.Thread.run(Thread.java:833)
2024-09-06 11:14:05,174 (ApacheDockerHttpClientImpl.java:260) DEBUG : Failed to close the response
java.net.SocketException: Socket closed
	at java.base/sun.nio.ch.NioSocketImpl.ensureOpenAndConnected(NioSocketImpl.java:165)
	at java.base/sun.nio.ch.NioSocketImpl.beginRead(NioSocketImpl.java:231)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:299)
	at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
	at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
	at java.base/java.net.Socket$SocketInputStream.read(Socket.java:976)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.io.LoggingInputStream.read(LoggingInputStream.java:81)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl.fillBuffer(SessionInputBufferImpl.java:149)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.SessionInputBufferImpl.readLine(SessionInputBufferImpl.java:280)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.getChunkSize(ChunkedInputStream.java:261)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.nextChunk(ChunkedInputStream.java:222)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.read(ChunkedInputStream.java:147)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.ChunkedInputStream.close(ChunkedInputStream.java:314)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer.close(Closer.java:48)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.impl.io.IncomingHttpEntity.close(IncomingHttpEntity.java:111)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.io.entity.HttpEntityWrapper.close(HttpEntityWrapper.java:120)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.io.Closer.close(Closer.java:48)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.core5.http.message.BasicClassicHttpResponse.close(BasicClassicHttpResponse.java:93)
	at com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.impl.classic.CloseableHttpResponse.close(CloseableHttpResponse.java:200)
	at com.github.dockerjava.zerodep.ApacheDockerHttpClientImpl$ApacheResponse.close(ApacheDockerHttpClientImpl.java:256)
	at org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.lambda$null$0(DefaultInvocationBuilder.java:272)
	at com.github.dockerjava.api.async.ResultCallbackTemplate.close(ResultCallbackTemplate.java:77)
	at org.testcontainers.containers.output.FrameConsumerResultCallback.close(FrameConsumerResultCallback.java:69)
	at org.testcontainers.containers.wait.strategy.LogMessageWaitStrategy.waitUntilReady(LogMessageWaitStrategy.java:49)
	at org.testcontainers.containers.wait.strategy.AbstractWaitStrategy.waitUntilReady(AbstractWaitStrategy.java:52)
	at org.testcontainers.containers.GenericContainer.waitUntilContainerStarted(GenericContainer.java:978)
	at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:502)
	at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:356)
	at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
	at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:346)
	at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:334)
	at com.ericsson.commonlibrary.netconf.util.Netopeer2DockerTestConfiguration.initialize(Netopeer2DockerTestConfiguration.java:158)
	at com.ericsson.commonlibrary.netconf.util.Netopeer2DockerTestConfiguration.<init>(Netopeer2DockerTestConfiguration.java:42)
	at com.ericsson.commonlibrary.netconf.util.Netopeer2DockerTestConfiguration$Builder.build(Netopeer2DockerTestConfiguration.java:143)
	at com.ericsson.commonlibrary.netconf.NetconfSshNotificationIT.setup(NetconfSshNotificationIT.java:41)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:568)
	at org.testng.internal.invokers.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:139)
	at org.testng.internal.invokers.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:69)
	at org.testng.internal.invokers.ConfigInvoker.invokeConfigurationMethod(ConfigInvoker.java:393)
	at org.testng.internal.invokers.ConfigInvoker.invokeConfigurations(ConfigInvoker.java:326)
	at org.testng.internal.invokers.TestMethodWorker.invokeBeforeClassMethods(TestMethodWorker.java:180)
	at org.testng.internal.invokers.TestMethodWorker.run(TestMethodWorker.java:122)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
	at org.testng.TestRunner.privateRun(TestRunner.java:819)
	at org.testng.TestRunner.run(TestRunner.java:619)
	at org.testng.SuiteRunner.runTest(SuiteRunner.java:443)
	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:437)
	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:397)
	at org.testng.SuiteRunner.run(SuiteRunner.java:336)
	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:95)
	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1301)
	at org.testng.TestNG.runSuitesLocally(TestNG.java:1228)
	at org.testng.TestNG.runSuites(TestNG.java:1134)
	at org.testng.TestNG.run(TestNG.java:1101)
	at com.microsoft.java.test.runner.testng.TestNGRunner.run(TestNGRunner.java:45)
	at com.microsoft.java.test.runner.testng.TestNGLauncher.execute(TestNGLauncher.java:32)
	at com.microsoft.java.test.runner.Launcher.main(Launcher.java:57)
2024-09-06 11:14:05,175 (GenericContainer.java:543)  INFO : Container netopeer2:latest started in PT34.8804468S
2024-09-06 11:14:05,176 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:05,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,177 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.
2024-09-06 11:14:05,178 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:05,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.
2024-09-06 11:14:05,178 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:05,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.
2024-09-06 11:14:05,179 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:05,179 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.[\n]"
2024-09-06 11:14:05,179 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,179 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: SR: Triggering "ietf-netconf-acm" "done" event on enabled data.
2024-09-06 11:14:05,185 (AbstrDockerCmd.java:32) DEBUG : Cmd: org.testcontainers.shaded.com.github.dockerjava.core.command.CopyArchiveToContainerCmdImpl@7a1f45ed[cp ,-a=false ,<null>, ,4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,:,/]
2024-09-06 11:14:05,186 (InternalHttpClient.java:172) DEBUG : ex-0000001F: preparing request execution
2024-09-06 11:14:05,186 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,186 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,186 (ProtocolExec.java:161) DEBUG : ex-0000001F: target auth state: UNCHALLENGED
2024-09-06 11:14:05,186 (ProtocolExec.java:167) DEBUG : ex-0000001F: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,186 (ConnectExec.java:116) DEBUG : ex-0000001F: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,186 (InternalExecRuntime.java:101) DEBUG : ex-0000001F: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,186 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-0000001F: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,187 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-0000001F: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,187 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-0000001F: acquired ep-0000001E
2024-09-06 11:14:05,187 (InternalExecRuntime.java:120) DEBUG : ex-0000001F: acquired endpoint ep-0000001E
2024-09-06 11:14:05,187 (ConnectExec.java:123) DEBUG : ex-0000001F: opening connection {}->http://localhost:2375
2024-09-06 11:14:05,187 (InternalExecRuntime.java:162) DEBUG : ep-0000001E: connecting endpoint (3 MINUTES)
2024-09-06 11:14:05,187 (PoolingHttpClientConnectionManager.java:405) DEBUG : ep-0000001E: connecting endpoint to http://localhost:2375 (3 MINUTES)
2024-09-06 11:14:05,187 (DefaultHttpClientConnectionOperator.java:145) DEBUG : http-outgoing-4: connecting to localhost/127.0.0.1:2375
2024-09-06 11:14:05,188 (DefaultHttpClientConnectionOperator.java:151) DEBUG : http-outgoing-4: connection established 127.0.0.1:42944<->127.0.0.1:2375
2024-09-06 11:14:05,188 (PoolingHttpClientConnectionManager.java:417) DEBUG : ep-0000001E: connected http-outgoing-4
2024-09-06 11:14:05,188 (InternalExecRuntime.java:166) DEBUG : ep-0000001E: endpoint connected
2024-09-06 11:14:05,188 (MainClientExec.java:102) DEBUG : ex-0000001F: executing PUT /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/archive?noOverwriteDirNonDir=false&path=%2F&copyUIDGID=false HTTP/1.1
2024-09-06 11:14:05,188 (InternalExecRuntime.java:213) DEBUG : ep-0000001E: start execution ex-0000001F
2024-09-06 11:14:05,188 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000001E: executing exchange ex-0000001F over http-outgoing-4
2024-09-06 11:14:05,188 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-4 >> PUT /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/archive?noOverwriteDirNonDir=false&path=%2F&copyUIDGID=false HTTP/1.1
2024-09-06 11:14:05,189 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> content-type: APPLICATION_X_TAR
2024-09-06 11:14:05,189 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,189 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,189 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,189 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Transfer-Encoding: chunked
2024-09-06 11:14:05,189 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Host: localhost:2375
2024-09-06 11:14:05,189 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Connection: keep-alive
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "PUT /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/archive?noOverwriteDirNonDir=false&path=%2F&copyUIDGID=false HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "content-type: APPLICATION_X_TAR[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "c00[\r][\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "./PaxHeaders.X/opt_dev_nacm.xml[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]0100644 0000000 0000000 00000000202 14357007403 015461[0x0] x[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]ustar[0x0]00[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]0000000 0000000 [0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]28 atime=1725612188.2041399[\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "28 ctime=1725612188.2021335[\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "28 mtime=1673268995.6267748[\n]"
2024-09-06 11:14:05,189 (Wire.java:92) DEBUG : http-outgoing-4 >> "46 LIBARCHIVE.creationtime=1725612188.2021335[\n]"
2024-09-06 11:14:05,190 (Wire.java:92) DEBUG : http-outgoing-4 >> "[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]opt/dev/nacm.xml[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]0100755 0000000 0000000 00000000151 14357007403 015500[0x0] 0[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]ustar[0x0]00ERICSSON\eraonel[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]0000000 0000000 [0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0]<nacm xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-acm">[\n]"
2024-09-06 11:14:05,190 (Wire.java:92) DEBUG : http-outgoing-4 >> "    <enable-nacm>false</enable-nacm>[\n]"
2024-09-06 11:14:05,190 (Wire.java:92) DEBUG : http-outgoing-4 >> "</nacm>[\n]"
2024-09-06 11:14:05,190 (Wire.java:92) DEBUG : http-outgoing-4 >> "[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x0][\r][\n]"
2024-09-06 11:14:05,190 (Wire.java:92) DEBUG : http-outgoing-4 >> "0[\r][\n]"
2024-09-06 11:14:05,190 (Wire.java:92) DEBUG : http-outgoing-4 >> "[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "Content-Length: 0[\r][\n]"
2024-09-06 11:14:05,195 (Wire.java:92) DEBUG : http-outgoing-4 << "[\r][\n]"
2024-09-06 11:14:05,195 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-4 << HTTP/1.1 200 OK
2024-09-06 11:14:05,196 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Api-Version: 1.43
2024-09-06 11:14:05,196 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Docker-Experimental: false
2024-09-06 11:14:05,196 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Ostype: linux
2024-09-06 11:14:05,196 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,196 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,196 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Content-Length: 0
2024-09-06 11:14:05,196 (MainClientExec.java:126) DEBUG : ex-0000001F: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,196 (InternalExecRuntime.java:255) DEBUG : ep-0000001E: releasing valid endpoint
2024-09-06 11:14:05,196 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000001E: releasing endpoint
2024-09-06 11:14:05,196 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000001E: connection http-outgoing-4 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,196 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000001E: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,196 (ProtocolExec.java:184) DEBUG : ex-0000001F: Cannot retry non-repeatable request
2024-09-06 11:14:05,196 (HttpRequestRetryExec.java:130) DEBUG : ex-0000001F: cannot retry non-repeatable request
2024-09-06 11:14:05,196 (ExecInContainerPattern.java:146) DEBUG : /beautiful_thompson: Running "exec" command: /bin/sh -c test -f /opt/dev/nacm.xml
2024-09-06 11:14:05,197 (AbstrDockerCmd.java:32) DEBUG : Cmd: true,<null>,true,{/bin/sh,-c,test -f /opt/dev/nacm.xml},4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,<null>,<null>,<null>,<null>,<null>
2024-09-06 11:14:05,197 (InternalHttpClient.java:172) DEBUG : ex-00000020: preparing request execution
2024-09-06 11:14:05,197 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,198 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,198 (ProtocolExec.java:161) DEBUG : ex-00000020: target auth state: UNCHALLENGED
2024-09-06 11:14:05,198 (ProtocolExec.java:167) DEBUG : ex-00000020: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,198 (ConnectExec.java:116) DEBUG : ex-00000020: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,198 (InternalExecRuntime.java:101) DEBUG : ex-00000020: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,198 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000020: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,198 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000020: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,198 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000020: acquired ep-0000001F
2024-09-06 11:14:05,198 (InternalExecRuntime.java:120) DEBUG : ex-00000020: acquired endpoint ep-0000001F
2024-09-06 11:14:05,198 (MainClientExec.java:102) DEBUG : ex-00000020: executing POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/exec HTTP/1.1
2024-09-06 11:14:05,198 (InternalExecRuntime.java:213) DEBUG : ep-0000001F: start execution ex-00000020
2024-09-06 11:14:05,198 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-0000001F: executing exchange ex-00000020 over http-outgoing-4
2024-09-06 11:14:05,198 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-4 >> POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/exec HTTP/1.1
2024-09-06 11:14:05,198 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> accept: application/json
2024-09-06 11:14:05,199 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> content-type: application/json
2024-09-06 11:14:05,199 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,199 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,199 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,199 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Content-Length: 262
2024-09-06 11:14:05,199 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Host: localhost:2375
2024-09-06 11:14:05,199 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Connection: keep-alive
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/exec HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "Content-Length: 262[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:92) DEBUG : http-outgoing-4 >> "[\r][\n]"
2024-09-06 11:14:05,199 (Wire.java:106) DEBUG : http-outgoing-4 >> "{"containerId":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","AttachStdin":null,"AttachStdout":true,"AttachStderr":true,"Tty":null,"Privileged":null,"User":null,"Cmd":["/bin/sh","-c","test -f /opt/dev/nacm.xml"],"Env":null,"WorkingDir":null}"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "HTTP/1.1 201 Created[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "Content-Length: 74[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "[\r][\n]"
2024-09-06 11:14:05,200 (Wire.java:92) DEBUG : http-outgoing-4 << "{"Id":"29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e"}[\n]"
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-4 << HTTP/1.1 201 Created
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Api-Version: 1.43
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Content-Type: application/json
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Docker-Experimental: false
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Ostype: linux
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,201 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Content-Length: 74
2024-09-06 11:14:05,201 (MainClientExec.java:126) DEBUG : ex-00000020: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,201 (InternalExecRuntime.java:255) DEBUG : ep-0000001F: releasing valid endpoint
2024-09-06 11:14:05,201 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000001F: releasing endpoint
2024-09-06 11:14:05,201 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000001F: connection http-outgoing-4 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,202 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000001F: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,203 (InternalHttpClient.java:172) DEBUG : ex-00000021: preparing request execution
2024-09-06 11:14:05,203 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,203 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,203 (ProtocolExec.java:161) DEBUG : ex-00000021: target auth state: UNCHALLENGED
2024-09-06 11:14:05,204 (ProtocolExec.java:167) DEBUG : ex-00000021: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,204 (ConnectExec.java:116) DEBUG : ex-00000021: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,204 (InternalExecRuntime.java:101) DEBUG : ex-00000021: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,204 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000021: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,204 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000021: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,204 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000021: acquired ep-00000020
2024-09-06 11:14:05,204 (InternalExecRuntime.java:120) DEBUG : ex-00000021: acquired endpoint ep-00000020
2024-09-06 11:14:05,204 (MainClientExec.java:102) DEBUG : ex-00000021: executing POST /v1.32/exec/29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e/start HTTP/1.1
2024-09-06 11:14:05,205 (InternalExecRuntime.java:213) DEBUG : ep-00000020: start execution ex-00000021
2024-09-06 11:14:05,205 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000020: executing exchange ex-00000021 over http-outgoing-4
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-4 >> POST /v1.32/exec/29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e/start HTTP/1.1
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> accept: application/json
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> content-type: application/json
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Content-Length: 26
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Host: localhost:2375
2024-09-06 11:14:05,205 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-4 >> Connection: keep-alive
2024-09-06 11:14:05,205 (Wire.java:92) DEBUG : http-outgoing-4 >> "POST /v1.32/exec/29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e/start HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,205 (Wire.java:92) DEBUG : http-outgoing-4 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "Content-Length: 26[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:92) DEBUG : http-outgoing-4 >> "[\r][\n]"
2024-09-06 11:14:05,206 (Wire.java:106) DEBUG : http-outgoing-4 >> "{"Detach":null,"Tty":null}"
2024-09-06 11:14:05,209 (Wire.java:92) DEBUG : http-outgoing-4 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,209 (Wire.java:92) DEBUG : http-outgoing-4 << "Content-Type: application/vnd.docker.raw-stream[\r][\n]"
2024-09-06 11:14:05,209 (Wire.java:92) DEBUG : http-outgoing-4 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,209 (Wire.java:92) DEBUG : http-outgoing-4 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,209 (Wire.java:106) DEBUG : http-outgoing-4 << "Ostype"
2024-09-06 11:14:05,209 (Wire.java:92) DEBUG : http-outgoing-4 << ": linux[\r][\n]"
2024-09-06 11:14:05,209 (Wire.java:92) DEBUG : http-outgoing-4 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,209 (Wire.java:92) DEBUG : http-outgoing-4 << "[\r][\n]"
2024-09-06 11:14:05,209 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-4 << HTTP/1.1 200 OK
2024-09-06 11:14:05,209 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Content-Type: application/vnd.docker.raw-stream
2024-09-06 11:14:05,209 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Api-Version: 1.43
2024-09-06 11:14:05,209 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Docker-Experimental: false
2024-09-06 11:14:05,209 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Ostype: linux
2024-09-06 11:14:05,209 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-4 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,367 (Wire.java:106) DEBUG : http-outgoing-4 << "end of stream"
2024-09-06 11:14:05,367 (DefaultManagedHttpClientConnection.java:143) DEBUG : http-outgoing-4: close connection IMMEDIATE
2024-09-06 11:14:05,367 (InternalExecRuntime.java:239) DEBUG : ep-00000020: endpoint closed
2024-09-06 11:14:05,367 (InternalExecRuntime.java:243) DEBUG : ep-00000020: discarding endpoint
2024-09-06 11:14:05,367 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000020: releasing endpoint
2024-09-06 11:14:05,367 (PoolingHttpClientConnectionManager.java:372) DEBUG : ep-00000020: connection is not kept alive
2024-09-06 11:14:05,367 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000020: connection released [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,368 (AbstrDockerCmd.java:32) DEBUG : Cmd: 29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e
2024-09-06 11:14:05,368 (InspectExecCmdExec.java:25) DEBUG : GET: DefaultWebTarget{path=[/exec/29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e/json], queryParams={}}
2024-09-06 11:14:05,368 (InternalHttpClient.java:172) DEBUG : ex-00000022: preparing request execution
2024-09-06 11:14:05,368 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,368 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,368 (ProtocolExec.java:161) DEBUG : ex-00000022: target auth state: UNCHALLENGED
2024-09-06 11:14:05,368 (ProtocolExec.java:167) DEBUG : ex-00000022: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,368 (ConnectExec.java:116) DEBUG : ex-00000022: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,369 (InternalExecRuntime.java:101) DEBUG : ex-00000022: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,369 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000022: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,369 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000022: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,369 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000022: acquired ep-00000021
2024-09-06 11:14:05,369 (InternalExecRuntime.java:120) DEBUG : ex-00000022: acquired endpoint ep-00000021
2024-09-06 11:14:05,369 (ConnectExec.java:123) DEBUG : ex-00000022: opening connection {}->http://localhost:2375
2024-09-06 11:14:05,369 (InternalExecRuntime.java:162) DEBUG : ep-00000021: connecting endpoint (3 MINUTES)
2024-09-06 11:14:05,369 (PoolingHttpClientConnectionManager.java:405) DEBUG : ep-00000021: connecting endpoint to http://localhost:2375 (3 MINUTES)
2024-09-06 11:14:05,369 (DefaultHttpClientConnectionOperator.java:145) DEBUG : http-outgoing-5: connecting to localhost/127.0.0.1:2375
2024-09-06 11:14:05,370 (DefaultHttpClientConnectionOperator.java:151) DEBUG : http-outgoing-5: connection established 127.0.0.1:42945<->127.0.0.1:2375
2024-09-06 11:14:05,370 (PoolingHttpClientConnectionManager.java:417) DEBUG : ep-00000021: connected http-outgoing-5
2024-09-06 11:14:05,370 (InternalExecRuntime.java:166) DEBUG : ep-00000021: endpoint connected
2024-09-06 11:14:05,370 (MainClientExec.java:102) DEBUG : ex-00000022: executing GET /v1.32/exec/29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e/json HTTP/1.1
2024-09-06 11:14:05,370 (InternalExecRuntime.java:213) DEBUG : ep-00000021: start execution ex-00000022
2024-09-06 11:14:05,370 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000021: executing exchange ex-00000022 over http-outgoing-5
2024-09-06 11:14:05,371 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-5 >> GET /v1.32/exec/29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e/json HTTP/1.1
2024-09-06 11:14:05,371 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> accept: application/json
2024-09-06 11:14:05,371 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,371 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,371 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,371 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Host: localhost:2375
2024-09-06 11:14:05,371 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Connection: keep-alive
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "GET /v1.32/exec/29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,371 (Wire.java:92) DEBUG : http-outgoing-5 >> "[\r][\n]"
2024-09-06 11:14:05,373 (Wire.java:92) DEBUG : http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,373 (Wire.java:92) DEBUG : http-outgoing-5 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,373 (Wire.java:92) DEBUG : http-outgoing-5 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:05,380 (Wire.java:92) DEBUG : http-outgoing-5 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,380 (Wire.java:92) DEBUG : http-outgoing-5 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,380 (Wire.java:92) DEBUG : http-outgoing-5 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,380 (Wire.java:92) DEBUG : http-outgoing-5 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,380 (Wire.java:92) DEBUG : http-outgoing-5 << "Content-Length: 403[\r][\n]"
2024-09-06 11:14:05,380 (Wire.java:92) DEBUG : http-outgoing-5 << "[\r][\n]"
2024-09-06 11:14:05,380 (Wire.java:92) DEBUG : http-outgoing-5 << "{"ID":"29617e72f748248ac75076a397694e518f938c8fbd0a9a67f41ff3a119e3576e","Running":false,"ExitCode":0,"ProcessConfig":{"tty":false,"entrypoint":"/bin/sh","arguments":["-c","test -f /opt/dev/nacm.xml"],"privileged":false},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"CanRemove":false,"ContainerID":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","DetachKeys":"","Pid":39183}[\n]"
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-5 << HTTP/1.1 200 OK
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Api-Version: 1.43
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Content-Type: application/json
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Docker-Experimental: false
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Ostype: linux
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,380 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Content-Length: 403
2024-09-06 11:14:05,380 (MainClientExec.java:126) DEBUG : ex-00000022: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,381 (InternalExecRuntime.java:255) DEBUG : ep-00000021: releasing valid endpoint
2024-09-06 11:14:05,381 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000021: releasing endpoint
2024-09-06 11:14:05,381 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000021: connection http-outgoing-5 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,381 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000021: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,381 (Netopeer2DockerTestConfiguration.java:199)  INFO : Message'' and result '0' of NACM file imported into docker
2024-09-06 11:14:05,381 (ExecInContainerPattern.java:146) DEBUG : /beautiful_thompson: Running "exec" command: /bin/sh -c /usr/bin/sysrepocfg --import=/opt/dev/nacm.xml --datastore running --module ietf-netconf-acm
2024-09-06 11:14:05,382 (AbstrDockerCmd.java:32) DEBUG : Cmd: true,<null>,true,{/bin/sh,-c,/usr/bin/sysrepocfg --import=/opt/dev/nacm.xml --datastore running --module ietf-netconf-acm},4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,<null>,<null>,<null>,<null>,<null>
2024-09-06 11:14:05,382 (InternalHttpClient.java:172) DEBUG : ex-00000023: preparing request execution
2024-09-06 11:14:05,382 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,383 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,383 (ProtocolExec.java:161) DEBUG : ex-00000023: target auth state: UNCHALLENGED
2024-09-06 11:14:05,383 (ProtocolExec.java:167) DEBUG : ex-00000023: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,383 (ConnectExec.java:116) DEBUG : ex-00000023: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,383 (InternalExecRuntime.java:101) DEBUG : ex-00000023: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,383 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000023: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,383 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000023: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,383 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000023: acquired ep-00000022
2024-09-06 11:14:05,383 (InternalExecRuntime.java:120) DEBUG : ex-00000023: acquired endpoint ep-00000022
2024-09-06 11:14:05,383 (MainClientExec.java:102) DEBUG : ex-00000023: executing POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/exec HTTP/1.1
2024-09-06 11:14:05,383 (InternalExecRuntime.java:213) DEBUG : ep-00000022: start execution ex-00000023
2024-09-06 11:14:05,383 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000022: executing exchange ex-00000023 over http-outgoing-5
2024-09-06 11:14:05,383 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-5 >> POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/exec HTTP/1.1
2024-09-06 11:14:05,383 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> accept: application/json
2024-09-06 11:14:05,384 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> content-type: application/json
2024-09-06 11:14:05,384 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,384 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,384 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,384 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Content-Length: 329
2024-09-06 11:14:05,384 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Host: localhost:2375
2024-09-06 11:14:05,384 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Connection: keep-alive
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/exec HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "Content-Length: 329[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:92) DEBUG : http-outgoing-5 >> "[\r][\n]"
2024-09-06 11:14:05,384 (Wire.java:106) DEBUG : http-outgoing-5 >> "{"containerId":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","AttachStdin":null,"AttachStdout":true,"AttachStderr":true,"Tty":null,"Privileged":null,"User":null,"Cmd":["/bin/sh","-c","/usr/bin/sysrepocfg --import=/opt/dev/nacm.xml --datastore running --module ietf-netconf-acm"],"Env":null,"WorkingDir":null}"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "Content-Length: 74[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "[\r][\n]"
2024-09-06 11:14:05,385 (Wire.java:92) DEBUG : http-outgoing-5 << "{"Id":"c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9"}[\n]"
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-5 << HTTP/1.1 201 Created
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Api-Version: 1.43
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Content-Type: application/json
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Docker-Experimental: false
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Ostype: linux
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,385 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Content-Length: 74
2024-09-06 11:14:05,386 (MainClientExec.java:126) DEBUG : ex-00000023: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,386 (InternalExecRuntime.java:255) DEBUG : ep-00000022: releasing valid endpoint
2024-09-06 11:14:05,386 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000022: releasing endpoint
2024-09-06 11:14:05,386 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000022: connection http-outgoing-5 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,387 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000022: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,388 (InternalHttpClient.java:172) DEBUG : ex-00000024: preparing request execution
2024-09-06 11:14:05,388 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,388 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,388 (ProtocolExec.java:161) DEBUG : ex-00000024: target auth state: UNCHALLENGED
2024-09-06 11:14:05,388 (ProtocolExec.java:167) DEBUG : ex-00000024: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,388 (ConnectExec.java:116) DEBUG : ex-00000024: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,388 (InternalExecRuntime.java:101) DEBUG : ex-00000024: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,389 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000024: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,389 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000024: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,389 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000024: acquired ep-00000023
2024-09-06 11:14:05,389 (InternalExecRuntime.java:120) DEBUG : ex-00000024: acquired endpoint ep-00000023
2024-09-06 11:14:05,389 (MainClientExec.java:102) DEBUG : ex-00000024: executing POST /v1.32/exec/c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9/start HTTP/1.1
2024-09-06 11:14:05,389 (InternalExecRuntime.java:213) DEBUG : ep-00000023: start execution ex-00000024
2024-09-06 11:14:05,389 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000023: executing exchange ex-00000024 over http-outgoing-5
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-5 >> POST /v1.32/exec/c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9/start HTTP/1.1
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> accept: application/json
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> content-type: application/json
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Content-Length: 26
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Host: localhost:2375
2024-09-06 11:14:05,389 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-5 >> Connection: keep-alive
2024-09-06 11:14:05,389 (Wire.java:92) DEBUG : http-outgoing-5 >> "POST /v1.32/exec/c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9/start HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "Content-Length: 26[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:92) DEBUG : http-outgoing-5 >> "[\r][\n]"
2024-09-06 11:14:05,390 (Wire.java:106) DEBUG : http-outgoing-5 >> "{"Detach":null,"Tty":null}"
2024-09-06 11:14:05,392 (Wire.java:92) DEBUG : http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,392 (Wire.java:92) DEBUG : http-outgoing-5 << "Content-Type: application/vnd.docker.raw-stream[\r][\n]"
2024-09-06 11:14:05,392 (Wire.java:92) DEBUG : http-outgoing-5 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,392 (Wire.java:92) DEBUG : http-outgoing-5 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,392 (Wire.java:106) DEBUG : http-outgoing-5 << "Ostype"
2024-09-06 11:14:05,392 (Wire.java:92) DEBUG : http-outgoing-5 << ": linux[\r][\n]"
2024-09-06 11:14:05,392 (Wire.java:92) DEBUG : http-outgoing-5 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,392 (Wire.java:92) DEBUG : http-outgoing-5 << "[\r][\n]"
2024-09-06 11:14:05,392 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-5 << HTTP/1.1 200 OK
2024-09-06 11:14:05,392 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Content-Type: application/vnd.docker.raw-stream
2024-09-06 11:14:05,392 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Api-Version: 1.43
2024-09-06 11:14:05,392 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Docker-Experimental: false
2024-09-06 11:14:05,392 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Ostype: linux
2024-09-06 11:14:05,392 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-5 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,582 (Wire.java:106) DEBUG : http-outgoing-5 << "end of stream"
2024-09-06 11:14:05,582 (DefaultManagedHttpClientConnection.java:143) DEBUG : http-outgoing-5: close connection IMMEDIATE
2024-09-06 11:14:05,582 (InternalExecRuntime.java:239) DEBUG : ep-00000023: endpoint closed
2024-09-06 11:14:05,582 (InternalExecRuntime.java:243) DEBUG : ep-00000023: discarding endpoint
2024-09-06 11:14:05,582 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000023: releasing endpoint
2024-09-06 11:14:05,582 (PoolingHttpClientConnectionManager.java:372) DEBUG : ep-00000023: connection is not kept alive
2024-09-06 11:14:05,582 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000023: connection released [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,583 (AbstrDockerCmd.java:32) DEBUG : Cmd: c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9
2024-09-06 11:14:05,583 (InspectExecCmdExec.java:25) DEBUG : GET: DefaultWebTarget{path=[/exec/c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9/json], queryParams={}}
2024-09-06 11:14:05,583 (InternalHttpClient.java:172) DEBUG : ex-00000025: preparing request execution
2024-09-06 11:14:05,583 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:05,583 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:05,583 (ProtocolExec.java:161) DEBUG : ex-00000025: target auth state: UNCHALLENGED
2024-09-06 11:14:05,583 (ProtocolExec.java:167) DEBUG : ex-00000025: proxy auth state: UNCHALLENGED
2024-09-06 11:14:05,583 (ConnectExec.java:116) DEBUG : ex-00000025: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:05,583 (InternalExecRuntime.java:101) DEBUG : ex-00000025: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:05,583 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000025: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 0; route allocated: 1 of 2147483647; total allocated: 1 of 2147483647]
2024-09-06 11:14:05,584 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000025: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,584 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000025: acquired ep-00000024
2024-09-06 11:14:05,584 (InternalExecRuntime.java:120) DEBUG : ex-00000025: acquired endpoint ep-00000024
2024-09-06 11:14:05,584 (ConnectExec.java:123) DEBUG : ex-00000025: opening connection {}->http://localhost:2375
2024-09-06 11:14:05,584 (InternalExecRuntime.java:162) DEBUG : ep-00000024: connecting endpoint (3 MINUTES)
2024-09-06 11:14:05,584 (PoolingHttpClientConnectionManager.java:405) DEBUG : ep-00000024: connecting endpoint to http://localhost:2375 (3 MINUTES)
2024-09-06 11:14:05,584 (DefaultHttpClientConnectionOperator.java:145) DEBUG : http-outgoing-6: connecting to localhost/127.0.0.1:2375
2024-09-06 11:14:05,585 (DefaultHttpClientConnectionOperator.java:151) DEBUG : http-outgoing-6: connection established 127.0.0.1:42946<->127.0.0.1:2375
2024-09-06 11:14:05,585 (PoolingHttpClientConnectionManager.java:417) DEBUG : ep-00000024: connected http-outgoing-6
2024-09-06 11:14:05,585 (InternalExecRuntime.java:166) DEBUG : ep-00000024: endpoint connected
2024-09-06 11:14:05,585 (MainClientExec.java:102) DEBUG : ex-00000025: executing GET /v1.32/exec/c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9/json HTTP/1.1
2024-09-06 11:14:05,585 (InternalExecRuntime.java:213) DEBUG : ep-00000024: start execution ex-00000025
2024-09-06 11:14:05,585 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000024: executing exchange ex-00000025 over http-outgoing-6
2024-09-06 11:14:05,585 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-6 >> GET /v1.32/exec/c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9/json HTTP/1.1
2024-09-06 11:14:05,585 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> accept: application/json
2024-09-06 11:14:05,585 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:05,585 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:05,585 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:05,585 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Host: localhost:2375
2024-09-06 11:14:05,585 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Connection: keep-alive
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "GET /v1.32/exec/c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:05,585 (Wire.java:92) DEBUG : http-outgoing-6 >> "[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "Date: Fri, 06 Sep 2024 09:14:05 GMT[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "Content-Length: 470[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:05,589 (Wire.java:92) DEBUG : http-outgoing-6 << "{"ID":"c358da52fefdbfb175c1bac950c811c51f059f25611e6b98858d59de22fa15e9","Running":false,"ExitCode":0,"ProcessConfig":{"tty":false,"entrypoint":"/bin/sh","arguments":["-c","/usr/bin/sysrepocfg --import=/opt/dev/nacm.xml --datastore running --module ietf-netconf-acm"],"privileged":false},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"CanRemove":false,"ContainerID":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","DetachKeys":"","Pid":39200}[\n]"
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-6 << HTTP/1.1 200 OK
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Api-Version: 1.43
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Content-Type: application/json
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Docker-Experimental: false
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Ostype: linux
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Date: Fri, 06 Sep 2024 09:14:05 GMT
2024-09-06 11:14:05,590 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Content-Length: 470
2024-09-06 11:14:05,590 (MainClientExec.java:126) DEBUG : ex-00000025: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:05,590 (InternalExecRuntime.java:255) DEBUG : ep-00000024: releasing valid endpoint
2024-09-06 11:14:05,590 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000024: releasing endpoint
2024-09-06 11:14:05,590 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000024: connection http-outgoing-6 can be kept alive for 3 MINUTES
2024-09-06 11:14:05,590 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000024: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:05,590 (Netopeer2DockerTestConfiguration.java:203)  INFO : Message'' and result '0' of NACM file executed
2024-09-06 11:14:05,734 (NetconfScheduledTaskExecutor.java:36) DEBUG : NetconfScheduledTaskExecutor Using LifeCycle from parameter: AUTOMATIC
2024-09-06 11:14:05,752 (Ssh.java:43)  INFO : Creating a SSH connection to localhost:32800
2024-09-06 11:14:05,779 (AbstractCli.java:80) DEBUG : Connecting cli
2024-09-06 11:14:05,779 (ImplSsh.java:468) DEBUG : Creating a ssh connection: localhost:32800_ID1027473
2024-09-06 11:14:05,833 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:05,833 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[INF]: LN: Accepted a connection on 0.0.0.0:830 from 172.17.0.1:38130.[\n]"
2024-09-06 11:14:05,833 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,833 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Accepted a connection on 0.0.0.0:830 from 172.17.0.1:38130.
2024-09-06 11:14:05,833 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:05,833 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:05.865095, 3] ssh_pki_import_privkey_base64:  Trying to decode privkey passphrase=false[\n]"
2024-09-06 11:14:05,833 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,833 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.865095, 3] ssh_pki_import_privkey_base64:  Trying to decode privkey passphrase=false
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "7e[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]v[2024/09/06 09:14:05.875947, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN POLLOUT ), out buffer 23[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875947, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN POLLOUT ), out buffer 23
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "4d[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]E[2024/09/06 09:14:05.875976, 4] ssh_socket_unbuffered_read:  read 29[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "6f[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]g[2024/09/06 09:14:05.875979, 3] callback_receive_banner:  Received banner: SSH-2.0-TrileadSSH2Java_213[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:05.875981, 3] ssh_server_connection_callback:  SSH client banner: SSH-2.0-TrileadSSH2Java_213[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "6b[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]c[2024/09/06 09:14:05.875984, 3] ssh_analyze_banner:  Analyzing banner: SSH-2.0-TrileadSSH2Java_213[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "6c[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]d[2024/09/06 09:14:05.875988, 4] ssh_send_kex:  Sending KEXINIT packet, first_kex_packet_follows = 0[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "146[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x1]>[2024/09/06 09:14:05.875992, 4] ssh_list_kex:  kex algos: curve25519-sha256,curve25519-sha256@xxxxxxxxxx,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,kex-strict-s-v00@xxxxxxxxxxx[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "67[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]_[2024/09/06 09:14:05.875994, 4] ssh_list_kex:  server host key algo: rsa-sha2-512,rsa-sha2-256[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "bf[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb7][2024/09/06 09:14:05.875995, 4] ssh_list_kex:  encryption client->server: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "bf[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb7][2024/09/06 09:14:05.875997, 4] ssh_list_kex:  encryption server->client: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "a8[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffa0][2024/09/06 09:14:05.875999, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512[\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "a8[\r][\n]"
2024-09-06 11:14:05,844 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffa0][2024/09/06 09:14:05.876000, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512[\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "6e[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]f[2024/09/06 09:14:05.876002, 4] ssh_list_kex:  compression algo client->server: none,zlib@xxxxxxxxxxx[\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "6e[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]f[2024/09/06 09:14:05.876004, 4] ssh_list_kex:  compression algo server->client: none,zlib@xxxxxxxxxxx[\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:05.876006, 4] ssh_list_kex:  languages client->server: [\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:05.876008, 4] ssh_list_kex:  languages server->client: [\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:05.876018, 3] packet_send2:  packet: wrote [type=20, len=788, padding_size=9, comp=778, payload=778][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "4c[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]D[2024/09/06 09:14:05.876020, 3] ssh_send_kex:  SSH_MSG_KEXINIT sent[\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:05.876068, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:05.876071, 4] ssh_socket_unbuffered_write:  wrote 815[\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:05.876073, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4[\n]"
2024-09-06 11:14:05,845 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,845 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875976, 4] ssh_socket_unbuffered_read:  read 29
2024-09-06 11:14:05,845 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875979, 3] callback_receive_banner:  Received banner: SSH-2.0-TrileadSSH2Java_213
2024-09-06 11:14:05,845 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875981, 3] ssh_server_connection_callback:  SSH client banner: SSH-2.0-TrileadSSH2Java_213
2024-09-06 11:14:05,845 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875984, 3] ssh_analyze_banner:  Analyzing banner: SSH-2.0-TrileadSSH2Java_213
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875988, 4] ssh_send_kex:  Sending KEXINIT packet, first_kex_packet_follows = 0
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875992, 4] ssh_list_kex:  kex algos: curve25519-sha256,curve25519-sha256@xxxxxxxxxx,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,kex-strict-s-v00@xxxxxxxxxxx
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875994, 4] ssh_list_kex:  server host key algo: rsa-sha2-512,rsa-sha2-256
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875995, 4] ssh_list_kex:  encryption client->server: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875997, 4] ssh_list_kex:  encryption server->client: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.875999, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876000, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876002, 4] ssh_list_kex:  compression algo client->server: none,zlib@xxxxxxxxxxx
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876004, 4] ssh_list_kex:  compression algo server->client: none,zlib@xxxxxxxxxxx
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876006, 4] ssh_list_kex:  languages client->server:
2024-09-06 11:14:05,846 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876008, 4] ssh_list_kex:  languages server->client:
2024-09-06 11:14:05,847 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876018, 3] packet_send2:  packet: wrote [type=20, len=788, padding_size=9, comp=778, payload=778]
2024-09-06 11:14:05,847 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876020, 3] ssh_send_kex:  SSH_MSG_KEXINIT sent
2024-09-06 11:14:05,847 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876068, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:05,847 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876071, 4] ssh_socket_unbuffered_write:  wrote 815
2024-09-06 11:14:05,847 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.876073, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4
2024-09-06 11:14:05,865 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:05,865 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:05.897560, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:05,865 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,865 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.897560, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:05.897591, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:05.897593, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:05.897595, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4[\n]"
2024-09-06 11:14:05,866 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,866 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.897591, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:05,866 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.897593, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:05,866 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.897595, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4
2024-09-06 11:14:05,898 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:05,898 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:05.929705, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4[\n]"
2024-09-06 11:14:05,898 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,898 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.929705, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4
2024-09-06 11:14:05,930 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:05,930 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:05.961742, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4[\n]"
2024-09-06 11:14:05,930 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,930 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.961742, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:05.993901, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993901, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:05.993943, 4] ssh_socket_unbuffered_read:  read 904[\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:05.993953, 3] ssh_packet_socket_callback:  packet: read type 20 [len=900,padding=6,comp=893,payload=893][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:05.993956, 3] ssh_packet_process:  Dispatching handler for packet type 20[\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:05.993960, 4] ssh_packet_kexinit:  KEXINIT received[\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "129[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x1]![2024/09/06 09:14:05.993987, 4] ssh_list_kex:  kex algos: diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,curve25519-sha256,curve25519-sha256@xxxxxxxxxx[\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "bf[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb7][2024/09/06 09:14:05.993990, 4] ssh_list_kex:  server host key algo: ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-256,rsa-sha2-512,ssh-rsa,ssh-dss[\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "c0[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb8][2024/09/06 09:14:05.993992, 4] ssh_list_kex:  encryption client->server: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc[\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,962 (Wire.java:92) DEBUG : http-outgoing-3 << "c0[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb8][2024/09/06 09:14:05.993993, 4] ssh_list_kex:  encryption server->client: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "d4[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffcc][2024/09/06 09:14:05.993996, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "d4[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffcc][2024/09/06 09:14:05.993997, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:05.994000, 4] ssh_list_kex:  compression algo client->server: none[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:05.994002, 4] ssh_list_kex:  compression algo server->client: none[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:05.994004, 4] ssh_list_kex:  languages client->server: [\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:05.994006, 4] ssh_list_kex:  languages server->client: [\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "dc[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffd4][2024/09/06 09:14:05.994015, 3] ssh_kex_select_methods:  Negotiated diffie-hellman-group-exchange-sha256,rsa-sha2-256,aes256-ctr,aes256-ctr,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,none,none,,[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "66[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]^[2024/09/06 09:14:05.994018, 3] crypt_set_algorithms_server:  Set output algorithm aes256-ctr[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:05.994021, 3] crypt_set_algorithms_server:  Set HMAC output algorithm to hmac-sha2-512-etm@xxxxxxxxxxx[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "65[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]][2024/09/06 09:14:05.994023, 3] crypt_set_algorithms_server:  Set input algorithm aes256-ctr[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:05.994025, 3] crypt_set_algorithms_server:  Set HMAC input algorithm to hmac-sha2-512-etm@xxxxxxxxxxx[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:05.994029, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:05,963 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,963 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993943, 4] ssh_socket_unbuffered_read:  read 904
2024-09-06 11:14:05,963 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993953, 3] ssh_packet_socket_callback:  packet: read type 20 [len=900,padding=6,comp=893,payload=893]
2024-09-06 11:14:05,963 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993956, 3] ssh_packet_process:  Dispatching handler for packet type 20
2024-09-06 11:14:05,963 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993960, 4] ssh_packet_kexinit:  KEXINIT received
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993987, 4] ssh_list_kex:  kex algos: diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,curve25519-sha256,curve25519-sha256@xxxxxxxxxx
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993990, 4] ssh_list_kex:  server host key algo: ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-256,rsa-sha2-512,ssh-rsa,ssh-dss
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993992, 4] ssh_list_kex:  encryption client->server: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993993, 4] ssh_list_kex:  encryption server->client: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993996, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.993997, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994000, 4] ssh_list_kex:  compression algo client->server: none
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994002, 4] ssh_list_kex:  compression algo server->client: none
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994004, 4] ssh_list_kex:  languages client->server:
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994006, 4] ssh_list_kex:  languages server->client:
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994015, 3] ssh_kex_select_methods:  Negotiated diffie-hellman-group-exchange-sha256,rsa-sha2-256,aes256-ctr,aes256-ctr,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,none,none,,
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994018, 3] crypt_set_algorithms_server:  Set output algorithm aes256-ctr
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994021, 3] crypt_set_algorithms_server:  Set HMAC output algorithm to hmac-sha2-512-etm@xxxxxxxxxxx
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994023, 3] crypt_set_algorithms_server:  Set input algorithm aes256-ctr
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994025, 3] crypt_set_algorithms_server:  Set HMAC input algorithm to hmac-sha2-512-etm@xxxxxxxxxxx
2024-09-06 11:14:05,964 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:05.994029, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:05,994 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:05,995 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.026152, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:05,995 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:05,995 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.026152, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,026 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,026 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.058398, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,026 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,026 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.058398, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,026 (Wire.java:92) DEBUG : http-outgoing-3 << "4d[\r][\n]"
2024-09-06 11:14:06,026 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]E[2024/09/06 09:14:06.058430, 4] ssh_socket_unbuffered_read:  read 24[\n]"
2024-09-06 11:14:06,026 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,026 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:06.058435, 3] ssh_packet_socket_callback:  packet: read type 34 [len=20,padding=6,comp=13,payload=13][\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.058437, 3] ssh_packet_process:  Dispatching handler for packet type 34[\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:06.058442, 3] ssh_packet_server_dhgex_request:  dh-gex: DHGEX_REQUEST[1024:2048:4096][\n]"
2024-09-06 11:14:06,027 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,027 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.058430, 4] ssh_socket_unbuffered_read:  read 24
2024-09-06 11:14:06,027 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.058435, 3] ssh_packet_socket_callback:  packet: read type 34 [len=20,padding=6,comp=13,payload=13]
2024-09-06 11:14:06,027 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.058437, 3] ssh_packet_process:  Dispatching handler for packet type 34
2024-09-06 11:14:06,027 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.058442, 3] ssh_packet_server_dhgex_request:  dh-gex: DHGEX_REQUEST[1024:2048:4096]
2024-09-06 11:14:06,028 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,028 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.060252, 3] ssh_retrieve_dhgroup:  Unable to open moduli file: No such file or directory[\n]"
2024-09-06 11:14:06,028 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,028 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.060252, 3] ssh_retrieve_dhgroup:  Unable to open moduli file: No such file or directory
2024-09-06 11:14:06,028 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,028 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.060528, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,028 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:06.060538, 4] ssh_socket_unbuffered_write:  wrote 536[\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:06.060541, 3] packet_send2:  packet: wrote [type=31, len=532, padding_size=8, comp=523, payload=523][\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.060547, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:06,029 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,029 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.060528, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,029 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.060538, 4] ssh_socket_unbuffered_write:  wrote 536
2024-09-06 11:14:06,029 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.060541, 3] packet_send2:  packet: wrote [type=31, len=532, padding_size=8, comp=523, payload=523]
2024-09-06 11:14:06,029 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.060547, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,058 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:06,058 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:06.090602, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,058 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,058 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.090602, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.090637, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.090641, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.090645, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:06,059 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,059 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.090637, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,059 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.090641, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,059 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.090645, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,091 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,091 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.122723, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:06,091 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,091 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.122723, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,123 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,123 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.154783, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:06,123 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,123 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.154783, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.186841, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,155 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.186841, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.186878, 4] ssh_socket_unbuffered_read:  read 528[\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:06.186883, 3] ssh_packet_socket_callback:  packet: read type 32 [len=524,padding=6,comp=517,payload=517][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.186885, 3] ssh_packet_process:  Dispatching handler for packet type 32[\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "67[\r][\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]_[2024/09/06 09:14:06.186888, 3] ssh_packet_server_dhgex_init:  Received SSH_MSG_KEX_DHGEX_INIT[\n]"
2024-09-06 11:14:06,155 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,155 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.186878, 4] ssh_socket_unbuffered_read:  read 528
2024-09-06 11:14:06,155 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.186883, 3] ssh_packet_socket_callback:  packet: read type 32 [len=524,padding=6,comp=517,payload=517]
2024-09-06 11:14:06,155 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.186885, 3] ssh_packet_process:  Dispatching handler for packet type 32
2024-09-06 11:14:06,155 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.186888, 3] ssh_packet_server_dhgex_init:  Received SSH_MSG_KEX_DHGEX_INIT
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.209515, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,177 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.209515, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:06.209693, 4] ssh_socket_unbuffered_write:  wrote 1096[\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:06.209776, 3] packet_send2:  packet: wrote [type=33, len=1092, padding_size=11, comp=1080, payload=1080][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.209853, 3] ssh_server_dh_process_init:  Sent KEX_DH_[GEX]_REPLY[\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,177 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.209940, 3] packet_send2:  packet: wrote [type=21, len=12, padding_size=10, comp=1, payload=1][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "5a[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]R[2024/09/06 09:14:06.210035, 4] ssh_packet_set_newkeys:  called, direction = OUT [\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "61[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Y[2024/09/06 09:14:06.210201, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks[\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "61[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Y[2024/09/06 09:14:06.210274, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks[\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.209693, 4] ssh_socket_unbuffered_write:  wrote 1096
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.209776, 3] packet_send2:  packet: wrote [type=33, len=1092, padding_size=11, comp=1080, payload=1080]
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.209853, 3] ssh_server_dh_process_init:  Sent KEX_DH_[GEX]_REPLY
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.209940, 3] packet_send2:  packet: wrote [type=21, len=12, padding_size=10, comp=1, payload=1]
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.210035, 4] ssh_packet_set_newkeys:  called, direction = OUT
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.210201, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.210274, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "57[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]O[2024/09/06 09:14:06.210356, 3] ssh_packet_send_newkeys:  SSH_MSG_NEWKEYS sent[\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.210434, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:06,178 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.210356, 3] ssh_packet_send_newkeys:  SSH_MSG_NEWKEYS sent
2024-09-06 11:14:06,178 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.210434, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,186 (Wire.java:92) DEBUG : http-outgoing-3 << "77[\r][\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]o[2024/09/06 09:14:06.219107, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 16[\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,187 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.219107, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 16
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.219441, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:06.219529, 4] ssh_socket_unbuffered_write:  wrote 16[\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.219612, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:06,187 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,187 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.219441, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,187 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.219529, 4] ssh_socket_unbuffered_write:  wrote 16
2024-09-06 11:14:06,187 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.219612, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:06.251132, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,219 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.251132, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.251378, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.251458, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.251521, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:06,219 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,219 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.251378, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,219 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.251458, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,219 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.251521, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:06,251 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,251 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.283537, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,251 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,251 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.283537, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "4d[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]E[2024/09/06 09:14:06.283862, 4] ssh_socket_unbuffered_read:  read 16[\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:06.283977, 3] ssh_packet_socket_callback:  packet: read type 21 [len=12,padding=10,comp=1,payload=1][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.284067, 3] ssh_packet_process:  Dispatching handler for packet type 21[\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "56[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]N[2024/09/06 09:14:06.284144, 3] ssh_packet_newkeys:  Received SSH_MSG_NEWKEYS[\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "59[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Q[2024/09/06 09:14:06.284215, 4] ssh_packet_set_newkeys:  called, direction = IN [\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:06.284293, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 7[\n]"
2024-09-06 11:14:06,252 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,252 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.283862, 4] ssh_socket_unbuffered_read:  read 16
2024-09-06 11:14:06,252 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.283977, 3] ssh_packet_socket_callback:  packet: read type 21 [len=12,padding=10,comp=1,payload=1]
2024-09-06 11:14:06,252 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.284067, 3] ssh_packet_process:  Dispatching handler for packet type 21
2024-09-06 11:14:06,252 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.284144, 3] ssh_packet_newkeys:  Received SSH_MSG_NEWKEYS
2024-09-06 11:14:06,252 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.284215, 4] ssh_packet_set_newkeys:  called, direction = IN
2024-09-06 11:14:06,252 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.284293, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 7
2024-09-06 11:14:06,255 (ImplSsh.java:493) DEBUG : Done creating a ssh connection: localhost:32800_ID1027473
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.315587, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,284 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.315587, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.315801, 4] ssh_socket_unbuffered_read:  read 216[\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:06.316017, 3] ssh_packet_socket_callback:  packet: read type 5 [len=32,padding=14,comp=17,payload=17][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "63[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][[2024/09/06 09:14:06.316112, 3] ssh_packet_process:  Dispatching handler for packet type 5[\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,284 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.315801, 4] ssh_socket_unbuffered_read:  read 216
2024-09-06 11:14:06,284 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316017, 3] ssh_packet_socket_callback:  packet: read type 5 [len=32,padding=14,comp=17,payload=17]
2024-09-06 11:14:06,284 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316112, 3] ssh_packet_process:  Dispatching handler for packet type 5
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:06.316217, 3] ssh_packet_service_request:  Received a SERVICE_REQUEST for service ssh-userauth[\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:06.316307, 3] ssh_packet_socket_callback:  Processing 116 bytes left in socket buffer[\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:06.316437, 3] ssh_packet_socket_callback:  packet: read type 50 [len=48,padding=9,comp=38,payload=38][\n]"
2024-09-06 11:14:06,284 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.316549, 3] ssh_packet_process:  Dispatching handler for packet type 50[\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "8e[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff86][2024/09/06 09:14:06.316632, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method none for user 'netconf'[\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316217, 3] ssh_packet_service_request:  Received a SERVICE_REQUEST for service ssh-userauth
2024-09-06 11:14:06,285 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316307, 3] ssh_packet_socket_callback:  Processing 116 bytes left in socket buffer
2024-09-06 11:14:06,285 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316437, 3] ssh_packet_socket_callback:  packet: read type 50 [len=48,padding=9,comp=38,payload=38]
2024-09-06 11:14:06,285 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316549, 3] ssh_packet_process:  Dispatching handler for packet type 50
2024-09-06 11:14:06,285 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316632, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method none for user 'netconf'
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "58[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]P[INF]: LN: Received an SSH message "request-service" of subtype "ssh-userauth".[\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "7e[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]v[2024/09/06 09:14:06.316852, 3] ssh_message_service_reply_success:  Sending a SERVICE_ACCEPT for service ssh-userauth[\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.317077, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:06.317215, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:06.317297, 3] packet_send2:  packet: wrote [type=6, len=28, padding_size=14, comp=17, payload=17][\n]"
2024-09-06 11:14:06,285 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,285 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-service" of subtype "ssh-userauth".
2024-09-06 11:14:06,285 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.316852, 3] ssh_message_service_reply_success:  Sending a SERVICE_ACCEPT for service ssh-userauth
2024-09-06 11:14:06,286 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.317077, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,286 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.317215, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:06,286 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.317297, 3] packet_send2:  packet: wrote [type=6, len=28, padding_size=14, comp=17, payload=17]
2024-09-06 11:14:06,315 (Wire.java:92) DEBUG : http-outgoing-3 << "4d[\r][\n]"
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]E[INF]: LN: Received an SSH message "request-auth" of subtype "none".[\n]"
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,316 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-auth" of subtype "none".
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "89[\r][\n]"
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff81][2024/09/06 09:14:06.347617, 3] ssh_auth_reply_default:  Sending a auth failure. methods that can continue: keyboard-interactive[\n]"
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:06.347868, 3] packet_send2:  packet: wrote [type=51, len=28, padding_size=5, comp=26, payload=26][\n]"
2024-09-06 11:14:06,316 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,316 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.347617, 3] ssh_auth_reply_default:  Sending a auth failure. methods that can continue: keyboard-interactive
2024-09-06 11:14:06,316 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.347868, 3] packet_send2:  packet: wrote [type=51, len=28, padding_size=5, comp=26, payload=26]
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:06.379605, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 100[\n]"
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,348 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.379605, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 100
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.379654, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:06.379657, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:06,348 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,348 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.379654, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,348 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.379657, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:06,349 (ImplSsh.java:386) DEBUG : Available authentication methods: [keyboard-interactive]
2024-09-06 11:14:06,349 (ImplSsh.java:388) DEBUG : Ignoring authentication methods: [gssapi-with-mic]
2024-09-06 11:14:06,349 (ImplSsh.java:398) DEBUG : Trying to authenticate with method: keyboard-interactive
2024-09-06 11:14:06,380 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:06,380 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:06.411750, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,380 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.411750, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN POLLOUT ), out buffer 0
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.411781, 4] ssh_socket_unbuffered_read:  read 148[\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:06.411848, 3] ssh_packet_socket_callback:  packet: read type 50 [len=80,padding=17,comp=62,payload=62][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.411853, 3] ssh_packet_process:  Dispatching handler for packet type 50[\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "9e[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff96][2024/09/06 09:14:06.411857, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method keyboard-interactive for user 'netconf'[\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.411860, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.411863, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "54[\r][\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]L[INF]: LN: Received an SSH message "request-auth" of subtype "interactive".[\n]"
2024-09-06 11:14:06,381 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,381 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.411781, 4] ssh_socket_unbuffered_read:  read 148
2024-09-06 11:14:06,381 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.411848, 3] ssh_packet_socket_callback:  packet: read type 50 [len=80,padding=17,comp=62,payload=62]
2024-09-06 11:14:06,382 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.411853, 3] ssh_packet_process:  Dispatching handler for packet type 50
2024-09-06 11:14:06,382 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.411857, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method keyboard-interactive for user 'netconf'
2024-09-06 11:14:06,382 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.411860, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,382 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.411863, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,382 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-auth" of subtype "interactive".
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.437450, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,405 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.437450, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:06.437636, 4] ssh_socket_unbuffered_write:  wrote 180[\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:06.437738, 3] packet_send2:  packet: wrote [type=60, len=108, padding_size=6, comp=105, payload=105][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "a5[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff9d][2024/09/06 09:14:06.437802, 3] ssh_message_auth_interactive_request:  Warning: Got a keyboard-interactive response but it seems we didn't send the request.[\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:06.437870, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.437942, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.438027, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,405 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,406 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.437636, 4] ssh_socket_unbuffered_write:  wrote 180
2024-09-06 11:14:06,406 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.437738, 3] packet_send2:  packet: wrote [type=60, len=108, padding_size=6, comp=105, payload=105]
2024-09-06 11:14:06,406 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.437802, 3] ssh_message_auth_interactive_request:  Warning: Got a keyboard-interactive response but it seems we didn't send the request.
2024-09-06 11:14:06,406 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.437870, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0
2024-09-06 11:14:06,406 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.437942, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,406 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.438027, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,411 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,411 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.443722, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,411 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,411 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.443722, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.443975, 4] ssh_socket_unbuffered_read:  read 100[\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:06.444141, 3] ssh_packet_socket_callback:  packet: read type 61 [len=32,padding=15,comp=16,payload=16][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.444216, 3] ssh_packet_process:  Dispatching handler for packet type 61[\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "5e[\r][\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]V[2024/09/06 09:14:06.444285, 3] ssh_packet_userauth_info_response:  kbdint: 1 answers[\n]"
2024-09-06 11:14:06,412 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,412 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.443975, 4] ssh_socket_unbuffered_read:  read 100
2024-09-06 11:14:06,412 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.444141, 3] ssh_packet_socket_callback:  packet: read type 61 [len=32,padding=15,comp=16,payload=16]
2024-09-06 11:14:06,412 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.444216, 3] ssh_packet_process:  Dispatching handler for packet type 61
2024-09-06 11:14:06,412 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.444285, 3] ssh_packet_userauth_info_response:  kbdint: 1 answers
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.482671, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,451 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.482671, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,451 (ImplSsh.java:412) DEBUG : keyboard-interactive authentication successful? true
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:06,451 (ImplSsh.java:424) DEBUG : Authentication Complete: localhost:32800_ID1027473
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:06.482973, 4] ssh_socket_unbuffered_write:  wrote 84[\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,451 (ImplSsh.java:243) DEBUG : Opening a ssh session: localhost:32800_ID1027473
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.483056, 3] packet_send2:  packet: wrote [type=52, len=12, padding_size=14, comp=1, payload=1][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "31[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0])[INF]: LN: User "netconf" authenticated.[\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:06.483249, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.483351, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.483434, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,451 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,452 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.482973, 4] ssh_socket_unbuffered_write:  wrote 84
2024-09-06 11:14:06,452 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.483056, 3] packet_send2:  packet: wrote [type=52, len=12, padding_size=14, comp=1, payload=1]
2024-09-06 11:14:06,452 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: User "netconf" authenticated.
2024-09-06 11:14:06,452 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.483249, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0
2024-09-06 11:14:06,452 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.483351, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,452 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.483434, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.511829, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,480 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.511829, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.512172, 4] ssh_socket_unbuffered_read:  read 100[\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:06.512402, 3] ssh_packet_socket_callback:  packet: read type 90 [len=32,padding=7,comp=24,payload=24][\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,480 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.512521, 3] ssh_packet_process:  Dispatching handler for packet type 90[\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "6a[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]b[2024/09/06 09:14:06.512626, 3] ssh_packet_channel_open:  Clients wants to open a session channel[\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:06.512732, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=8, in_blocks=8][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,481 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.512172, 4] ssh_socket_unbuffered_read:  read 100
2024-09-06 11:14:06,481 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.512402, 3] ssh_packet_socket_callback:  packet: read type 90 [len=32,padding=7,comp=24,payload=24]
2024-09-06 11:14:06,481 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.512521, 3] ssh_packet_process:  Dispatching handler for packet type 90
2024-09-06 11:14:06,481 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.512626, 3] ssh_packet_channel_open:  Clients wants to open a session channel
2024-09-06 11:14:06,481 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.512732, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=8, in_blocks=8]
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "58[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]P[INF]: LN: Received an SSH message "request-channel-open" of subtype "session".[\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "8e[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff86][2024/09/06 09:14:06.513084, 3] ssh_message_channel_request_open_reply_accept_channel:  Accepting a channel request_open for chan 100[\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:06.513200, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.513492, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,481 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,482 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-channel-open" of subtype "session".
2024-09-06 11:14:06,482 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.513084, 3] ssh_message_channel_request_open_reply_accept_channel:  Accepting a channel request_open for chan 100
2024-09-06 11:14:06,482 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.513200, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9]
2024-09-06 11:14:06,482 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.513492, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,482 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:06,482 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:06.513628, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:06,482 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,482 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:06,482 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:06.513759, 3] packet_send2:  packet: wrote [type=91, len=28, padding_size=14, comp=17, payload=17][\n]"
2024-09-06 11:14:06,482 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,482 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.513628, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:06,482 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.513759, 3] packet_send2:  packet: wrote [type=91, len=28, padding_size=14, comp=17, payload=17]
2024-09-06 11:14:06,482 (ImplSsh.java:250) DEBUG : Done opening a ssh session: localhost:32800_ID1027473
2024-09-06 11:14:06,482 (ImplSsh.java:279) DEBUG : Starting subsystem: netconf
2024-09-06 11:14:06,512 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:06,512 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:06.543969, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,512 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.543969, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN POLLOUT ), out buffer 0
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.544247, 4] ssh_socket_unbuffered_read:  read 116[\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:06.544439, 3] ssh_packet_socket_callback:  packet: read type 98 [len=48,padding=17,comp=30,payload=30][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.544547, 3] ssh_packet_process:  Dispatching handler for packet type 98[\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "96[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff8e][2024/09/06 09:14:06.544635, 3] ssh_message_handle_channel_request:  Received a subsystem channel_request for channel (43:100) (want_reply=1)[\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:06.544719, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.544247, 4] ssh_socket_unbuffered_read:  read 116
2024-09-06 11:14:06,513 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.544439, 3] ssh_packet_socket_callback:  packet: read type 98 [len=48,padding=17,comp=30,payload=30]
2024-09-06 11:14:06,513 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.544547, 3] ssh_packet_process:  Dispatching handler for packet type 98
2024-09-06 11:14:06,513 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.544635, 3] ssh_message_handle_channel_request:  Received a subsystem channel_request for channel (43:100) (want_reply=1)
2024-09-06 11:14:06,513 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.544719, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9]
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.544824, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.544907, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "55[\r][\n]"
2024-09-06 11:14:06,513 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]M[INF]: LN: Received an SSH message "request-channel" of subtype "subsystem".[\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "85[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]}[2024/09/06 09:14:06.545108, 3] ssh_message_channel_request_reply_success:  Sending a channel_request success to channel 100[\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:06.545193, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,514 (ImplSsh.java:286) DEBUG : Done starting netconf session
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.544824, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.544907, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-channel" of subtype "subsystem".
2024-09-06 11:14:06,514 (AbstractCli.java:84) DEBUG : Done connecting cli
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.545108, 3] ssh_message_channel_request_reply_success:  Sending a channel_request success to channel 100
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.545193, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9]
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.545444, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:06.545560, 4] ssh_socket_unbuffered_write:  wrote 84[\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.545654, 3] packet_send2:  packet: wrote [type=99, len=12, padding_size=10, comp=5, payload=5][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.545874, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=73, in_blocks=73][\n]"
2024-09-06 11:14:06,514 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.545444, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.545560, 4] ssh_socket_unbuffered_write:  wrote 84
2024-09-06 11:14:06,514 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.545654, 3] packet_send2:  packet: wrote [type=99, len=12, padding_size=10, comp=5, payload=5]
2024-09-06 11:14:06,515 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.545874, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=73, in_blocks=73]
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:06.546060, 3] packet_send2:  packet: wrote [type=94, len=1036, padding_size=12, comp=1027, payload=1027][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.546180, 3] channel_write_common:  ssh_channel_write wrote 1018 bytes[\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:06.546276, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 1108[\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.546467, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:06.546570, 4] ssh_socket_unbuffered_write:  wrote 1108[\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.546664, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=136, in_blocks=72][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,515 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546060, 3] packet_send2:  packet: wrote [type=94, len=1036, padding_size=12, comp=1027, payload=1027]
2024-09-06 11:14:06,515 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546180, 3] channel_write_common:  ssh_channel_write wrote 1018 bytes
2024-09-06 11:14:06,515 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546276, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 1108
2024-09-06 11:14:06,515 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546467, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,515 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546570, 4] ssh_socket_unbuffered_write:  wrote 1108
2024-09-06 11:14:06,515 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546664, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=136, in_blocks=72]
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "82[\r][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]z[2024/09/06 09:14:06.546840, 3] packet_send2:  packet: wrote [type=94, len=1020, padding_size=8, comp=1015, payload=1015][\n]"
2024-09-06 11:14:06,515 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.546952, 3] channel_write_common:  ssh_channel_write wrote 1006 bytes[\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:06.547057, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 1092[\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.547211, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:06.547220, 4] ssh_socket_unbuffered_write:  wrote 1092[\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.547246, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=71][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:06.547306, 3] packet_send2:  packet: wrote [type=94, len=1004, padding_size=14, comp=993, payload=993][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "61[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Y[2024/09/06 09:14:06.547311, 3] channel_write_common:  ssh_channel_write wrote 984 bytes[\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:06.547317, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 1076[\n]"
2024-09-06 11:14:06,516 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,516 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546840, 3] packet_send2:  packet: wrote [type=94, len=1020, padding_size=8, comp=1015, payload=1015]
2024-09-06 11:14:06,516 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.546952, 3] channel_write_common:  ssh_channel_write wrote 1006 bytes
2024-09-06 11:14:06,517 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547057, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 1092
2024-09-06 11:14:06,517 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547211, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,517 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547220, 4] ssh_socket_unbuffered_write:  wrote 1092
2024-09-06 11:14:06,517 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547246, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=71]
2024-09-06 11:14:06,517 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547306, 3] packet_send2:  packet: wrote [type=94, len=1004, padding_size=14, comp=993, payload=993]
2024-09-06 11:14:06,517 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547311, 3] channel_write_common:  ssh_channel_write wrote 984 bytes
2024-09-06 11:14:06,517 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547317, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 1076
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.547545, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:06.547557, 4] ssh_socket_unbuffered_write:  wrote 1076[\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.547563, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=9][\n]"
2024-09-06 11:14:06,517 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:06.547613, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "5f[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]W[2024/09/06 09:14:06.547618, 3] channel_write_common:  ssh_channel_write wrote 6 bytes[\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:06.547624, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 100[\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.547881, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:06.547891, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:06.547909, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.547913, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.547917, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,518 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,518 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547545, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,518 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547557, 4] ssh_socket_unbuffered_write:  wrote 1076
2024-09-06 11:14:06,518 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547563, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=9]
2024-09-06 11:14:06,518 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547613, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15]
2024-09-06 11:14:06,518 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547618, 3] channel_write_common:  ssh_channel_write wrote 6 bytes
2024-09-06 11:14:06,518 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547624, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 100
2024-09-06 11:14:06,519 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547881, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,519 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547891, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:06,519 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547909, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0
2024-09-06 11:14:06,519 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547913, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,519 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.547917, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,527 (Ssh.java:82)  INFO : Established a SSH connection to localhost:32800
2024-09-06 11:14:06,527 (AbstractTransport.java:546) DEBUG : Starting to exchange the <hello> messages
2024-09-06 11:14:06,537 (PowerLogger.java:328) DEBUG : <hello xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"><capabilities><capability>urn:ietf:params:netconf:base:1.0</capability><capability>urn:ietf:params:netconf:base:1.1</capability><capability>urn:ietf:params:netconf:capability:writable-running:1.0</capability><capability>urn:ietf:params:netconf:capability:candidate:1.0</capability><capability>urn:ietf:params:netconf:capability:confirmed-commit:1.1</capability><capability>urn:ietf:params:netconf:capability:rollback-on-error:1.0</capability><capability>urn:ietf:params:netconf:capability:validate:1.1</capability><capability>urn:ietf:params:netconf:capability:startup:1.0</capability><capability>urn:ietf:params:netconf:capability:xpath:1.0</capability><capability>urn:ietf:params:netconf:capability:with-defaults:1.0?basic-mode=explicit&amp;also-supported=report-all,report-all-tagged,trim,explicit</capability><capability>urn:ietf:params:netconf:capability:notification:1.0</capability><capability>urn:ietf:params:netconf:capability:interleave:1.0</capability><capability>urn:ietf:params:netconf:capability:url:1.0?scheme=ftp,ftps,http,https,scp,sftp</capability><capability>urn:ietf:params:xml:ns:yang:ietf-yang-metadata?module=ietf-yang-metadata&amp;revision=2016-08-05</capability><capability>urn:ietf:params:xml:ns:yang:ietf-inet-types?module=ietf-inet-types&amp;revision=2013-07-15</capability><capability>urn:ietf:params:xml:ns:yang:ietf-yang-types?module=ietf-yang-types&amp;revision=2013-07-15</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-acm?module=ietf-netconf-acm&amp;revision=2018-02-14</capability><capability>urn:ietf:params:netconf:capability:yang-library:1.1?revision=2019-01-04&amp;content-id=2008448144</capability><capability>urn:sysrepo:plugind?module=sysrepo-plugind&amp;revision=2022-08-26</capability><capability>urn:ietf:params:xml:ns:netconf:base:1.0?module=ietf-netconf&amp;revision=2013-09-29&amp;features=writable-running,candidate,confirmed-commit,rollback-on-error,validate,startup,url,xpath</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-with-defaults?module=ietf-netconf-with-defaults&amp;revision=2011-06-01</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-notifications?module=ietf-netconf-notifications&amp;revision=2012-02-06</capability><capability>urn:ietf:params:xml:ns:netconf:notification:1.0?module=notifications&amp;revision=2008-07-14</capability><capability>urn:ietf:params:xml:ns:netmod:notification?module=nc-notifications&amp;revision=2008-07-14</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring?module=ietf-netconf-monitoring&amp;revision=2010-10-04</capability><capability>urn:ietf:params:xml:ns:yang:ietf-x509-cert-to-name?module=ietf-x509-cert-to-name&amp;revision=2014-12-10</capability><capability>urn:ietf:params:xml:ns:yang:iana-crypt-hash?module=iana-crypt-hash&amp;revision=2014-04-04&amp;features=crypt-hash-md5,crypt-hash-sha-256,crypt-hash-sha-512</capability></capabilities><session-id>1</session-id></hello>
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.568441, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,537 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.568441, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.568484, 4] ssh_socket_unbuffered_read:  read 100[\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:06.568589, 3] ssh_packet_socket_callback:  packet: read type 98 [len=32,padding=9,comp=22,payload=22][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.568596, 3] ssh_packet_process:  Dispatching handler for packet type 98[\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "99[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff91][2024/09/06 09:14:06.568603, 3] ssh_message_handle_channel_request:  Received a trilead-ping channel_request for channel (43:100) (want_reply=1)[\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.568608, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=10][\n]"
2024-09-06 11:14:06,537 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,538 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.568484, 4] ssh_socket_unbuffered_read:  read 100
2024-09-06 11:14:06,538 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.568589, 3] ssh_packet_socket_callback:  packet: read type 98 [len=32,padding=9,comp=22,payload=22]
2024-09-06 11:14:06,538 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.568596, 3] ssh_packet_process:  Dispatching handler for packet type 98
2024-09-06 11:14:06,538 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.568603, 3] ssh_message_handle_channel_request:  Received a trilead-ping channel_request for channel (43:100) (want_reply=1)
2024-09-06 11:14:06,538 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.568608, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=10]
2024-09-06 11:14:06,650 (AbstractTransport.java:586) DEBUG : The exchange of <hello> messages phase is completed, the session ID is 1
2024-09-06 11:14:06,654 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,654 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.682602, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,654 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682602, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.682664, 4] ssh_socket_unbuffered_read:  read 340[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:06.682774, 3] ssh_packet_socket_callback:  packet: read type 94 [len=272,padding=8,comp=263,payload=263][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.682780, 3] ssh_packet_process:  Dispatching handler for packet type 94[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:06.682787, 3] channel_rcv_data:  Channel receiving 254 bytes data (local win=32000 remote win=1061946)[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:06.682791, 3] channel_default_bufferize:  placing 254 bytes into channel buffer (stdout)[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:06.682796, 3] channel_rcv_data:  Channel windows are now (local win=31746 remote win=1061946)[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.682800, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=26][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:06.682818, 3] ssh_channel_read_timeout:  Read (6) buffered : 254 bytes. Window: 31746[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.682823, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=26][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:06.682884, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:06.682915, 4] ssh_socket_unbuffered_write:  wrote 84[\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,655 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.682920, 3] packet_send2:  packet: wrote [type=93, len=12, padding_size=6, comp=9, payload=9][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "67[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]_[2024/09/06 09:14:06.682925, 3] grow_window:  growing window (channel 43:100) by 2065158 bytes[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682930, 3] ssh_channel_read_timeout:  Read (6) buffered : 248 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682935, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682940, 3] ssh_channel_read_timeout:  Read (6) buffered : 242 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682943, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682947, 3] ssh_channel_read_timeout:  Read (6) buffered : 236 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682950, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682953, 3] ssh_channel_read_timeout:  Read (6) buffered : 230 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682957, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682960, 3] ssh_channel_read_timeout:  Read (6) buffered : 224 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,656 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682963, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682967, 3] ssh_channel_read_timeout:  Read (6) buffered : 218 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682970, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682974, 3] ssh_channel_read_timeout:  Read (6) buffered : 212 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682977, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682980, 3] ssh_channel_read_timeout:  Read (6) buffered : 206 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682983, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682986, 3] ssh_channel_read_timeout:  Read (6) buffered : 200 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682990, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.682993, 3] ssh_channel_read_timeout:  Read (6) buffered : 194 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.682996, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683000, 3] ssh_channel_read_timeout:  Read (6) buffered : 188 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683004, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683007, 3] ssh_channel_read_timeout:  Read (6) buffered : 182 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683010, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683016, 3] ssh_channel_read_timeout:  Read (6) buffered : 176 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683019, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683022, 3] ssh_channel_read_timeout:  Read (6) buffered : 170 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683025, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683029, 3] ssh_channel_read_timeout:  Read (6) buffered : 164 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683032, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683036, 3] ssh_channel_read_timeout:  Read (6) buffered : 158 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683039, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683043, 3] ssh_channel_read_timeout:  Read (6) buffered : 152 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683046, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683049, 3] ssh_channel_read_timeout:  Read (6) buffered : 146 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683053, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683056, 3] ssh_channel_read_timeout:  Read (6) buffered : 140 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683059, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683063, 3] ssh_channel_read_timeout:  Read (6) buffered : 134 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683066, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683070, 3] ssh_channel_read_timeout:  Read (6) buffered : 128 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683073, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683077, 3] ssh_channel_read_timeout:  Read (6) buffered : 122 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683080, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683083, 3] ssh_channel_read_timeout:  Read (6) buffered : 116 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683087, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683092, 3] ssh_channel_read_timeout:  Read (6) buffered : 110 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683095, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:06.683099, 3] ssh_channel_read_timeout:  Read (6) buffered : 104 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683103, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683106, 3] ssh_channel_read_timeout:  Read (6) buffered : 98 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,659 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683110, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not"
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682664, 4] ssh_socket_unbuffered_read:  read 340
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682774, 3] ssh_packet_socket_callback:  packet: read type 94 [len=272,padding=8,comp=263,payload=263]
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682780, 3] ssh_packet_process:  Dispatching handler for packet type 94
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682787, 3] channel_rcv_data:  Channel receiving 254 bytes data (local win=32000 remote win=1061946)
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682791, 3] channel_default_bufferize:  placing 254 bytes into channel buffer (stdout)
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682796, 3] channel_rcv_data:  Channel windows are now (local win=31746 remote win=1061946)
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682800, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=26]
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682818, 3] ssh_channel_read_timeout:  Read (6) buffered : 254 bytes. Window: 31746
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682823, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=26]
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682884, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682915, 4] ssh_socket_unbuffered_write:  wrote 84
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682920, 3] packet_send2:  packet: wrote [type=93, len=12, padding_size=6, comp=9, payload=9]
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682925, 3] grow_window:  growing window (channel 43:100) by 2065158 bytes
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682930, 3] ssh_channel_read_timeout:  Read (6) buffered : 248 bytes. Window: 2096904
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682935, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682940, 3] ssh_channel_read_timeout:  Read (6) buffered : 242 bytes. Window: 2096904
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682943, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682947, 3] ssh_channel_read_timeout:  Read (6) buffered : 236 bytes. Window: 2096904
2024-09-06 11:14:06,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682950, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682953, 3] ssh_channel_read_timeout:  Read (6) buffered : 230 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682957, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682960, 3] ssh_channel_read_timeout:  Read (6) buffered : 224 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682963, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682967, 3] ssh_channel_read_timeout:  Read (6) buffered : 218 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682970, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682974, 3] ssh_channel_read_timeout:  Read (6) buffered : 212 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682977, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682980, 3] ssh_channel_read_timeout:  Read (6) buffered : 206 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682983, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682986, 3] ssh_channel_read_timeout:  Read (6) buffered : 200 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682990, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682993, 3] ssh_channel_read_timeout:  Read (6) buffered : 194 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.682996, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683000, 3] ssh_channel_read_timeout:  Read (6) buffered : 188 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683004, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683007, 3] ssh_channel_read_timeout:  Read (6) buffered : 182 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683010, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683016, 3] ssh_channel_read_timeout:  Read (6) buffered : 176 bytes. Window: 2096904
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683019, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683022, 3] ssh_channel_read_timeout:  Read (6) buffered : 170 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683025, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683029, 3] ssh_channel_read_timeout:  Read (6) buffered : 164 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683032, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683036, 3] ssh_channel_read_timeout:  Read (6) buffered : 158 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683039, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683043, 3] ssh_channel_read_timeout:  Read (6) buffered : 152 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683046, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683049, 3] ssh_channel_read_timeout:  Read (6) buffered : 146 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683053, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683056, 3] ssh_channel_read_timeout:  Read (6) buffered : 140 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683059, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683063, 3] ssh_channel_read_timeout:  Read (6) buffered : 134 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683066, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683070, 3] ssh_channel_read_timeout:  Read (6) buffered : 128 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683073, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683077, 3] ssh_channel_read_timeout:  Read (6) buffered : 122 bytes. Window: 2096904
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683080, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683083, 3] ssh_channel_read_timeout:  Read (6) buffered : 116 bytes. Window: 2096904
2024-09-06 11:14:06,663 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683087, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,663 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683092, 3] ssh_channel_read_timeout:  Read (6) buffered : 110 bytes. Window: 2096904
2024-09-06 11:14:06,663 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683095, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,663 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683099, 3] ssh_channel_read_timeout:  Read (6) buffered : 104 bytes. Window: 2096904
2024-09-06 11:14:06,663 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683103, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,663 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683106, 3] ssh_channel_read_timeout:  Read (6) buffered : 98 bytes. Window: 2096904
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << " needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683114, 3] ssh_channel_read_timeout:  Read (6) buffered : 92 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683118, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683121, 3] ssh_channel_read_timeout:  Read (6) buffered : 86 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683124, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683128, 3] ssh_channel_read_timeout:  Read (6) buffered : 80 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683131, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683135, 3] ssh_channel_read_timeout:  Read (6) buffered : 74 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683139, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683143, 3] ssh_channel_read_timeout:  Read (6) buffered : 68 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683146, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683150, 3] ssh_channel_read_timeout:  Read (6) buffered : 62 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683153, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683156, 3] ssh_channel_read_timeout:  Read (6) buffered : 56 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683160, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683163, 3] ssh_channel_read_timeout:  Read (6) buffered : 50 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683166, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683169, 3] ssh_channel_read_timeout:  Read (6) buffered : 44 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683173, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683177, 3] ssh_channel_read_timeout:  Read (6) buffered : 38 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683180, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683184, 3] ssh_channel_read_timeout:  Read (6) buffered : 32 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683188, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683192, 3] ssh_channel_read_timeout:  Read (6) buffered : 26 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683196, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683199, 3] ssh_channel_read_timeout:  Read (6) buffered : 20 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683203, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:06.683206, 3] ssh_channel_read_timeout:  Read (6) buffered : 14 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683209, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:06.683213, 3] ssh_channel_read_timeout:  Read (6) buffered : 8 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:06.683219, 3] ssh_channel_read_timeout:  Read (2) buffered : 2 bytes. Window: 2096904[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:06.683224, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)[\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "40[\r][\n]"
2024-09-06 11:14:06,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]8[INF]: NP: Generated new event (netconf-session-start).[\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "5e[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]V[INF]: LN: Session 1: Received an SSH message "request-channel" of subtype "unknown".[\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "6f[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]g[2024/09/06 09:14:06.683578, 3] ssh_message_reply_default:  Don't know what to default reply to 0 type[\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:06.683597, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:06.683600, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:06.683604, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:06,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683110, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683114, 3] ssh_channel_read_timeout:  Read (6) buffered : 92 bytes. Window: 2096904
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683118, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683121, 3] ssh_channel_read_timeout:  Read (6) buffered : 86 bytes. Window: 2096904
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683124, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683128, 3] ssh_channel_read_timeout:  Read (6) buffered : 80 bytes. Window: 2096904
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683131, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683135, 3] ssh_channel_read_timeout:  Read (6) buffered : 74 bytes. Window: 2096904
2024-09-06 11:14:06,666 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683139, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683143, 3] ssh_channel_read_timeout:  Read (6) buffered : 68 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683146, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683150, 3] ssh_channel_read_timeout:  Read (6) buffered : 62 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683153, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683156, 3] ssh_channel_read_timeout:  Read (6) buffered : 56 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683160, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683163, 3] ssh_channel_read_timeout:  Read (6) buffered : 50 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683166, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683169, 3] ssh_channel_read_timeout:  Read (6) buffered : 44 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683173, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683177, 3] ssh_channel_read_timeout:  Read (6) buffered : 38 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683180, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683184, 3] ssh_channel_read_timeout:  Read (6) buffered : 32 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683188, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683192, 3] ssh_channel_read_timeout:  Read (6) buffered : 26 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683196, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683199, 3] ssh_channel_read_timeout:  Read (6) buffered : 20 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683203, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683206, 3] ssh_channel_read_timeout:  Read (6) buffered : 14 bytes. Window: 2096904
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683209, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,667 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683213, 3] ssh_channel_read_timeout:  Read (6) buffered : 8 bytes. Window: 2096904
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683219, 3] ssh_channel_read_timeout:  Read (2) buffered : 2 bytes. Window: 2096904
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683224, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2096904 bytes)
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: NP: Generated new event (netconf-session-start).
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Session 1: Received an SSH message "request-channel" of subtype "unknown".
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683578, 3] ssh_message_reply_default:  Don't know what to default reply to 0 type
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683597, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLOUT ), out buffer 0
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683600, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:06,668 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.683604, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:06,677 (Netconf.java:25) DEBUG : Created Netconf instance for Netconf1.0
2024-09-06 11:14:06,754 (NotificationSubscriptionImpl.java:461) DEBUG : subcription message:  <rpc message-id="1" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
   <urn:create-subscription xmlns:urn="urn:ietf:params:xml:ns:netconf:notification:1.0"/>
 </rpc>
2024-09-06 11:14:06,851 (NotificationSubscriptionImpl.java:527) DEBUG : Added subscriber com.ericsson.commonlibrary.netconf.util.CombinedTestModelAndConnectionEventsImpl
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:06.919532, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,888 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.919532, 4] ssh_socket_pollcallback:  Poll callback on socket 51 (POLLIN ), out buffer 0
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:06.919585, 4] ssh_socket_unbuffered_read:  read 100[\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:06.919695, 3] ssh_packet_socket_callback:  packet: read type 98 [len=32,padding=9,comp=22,payload=22][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:06.919702, 3] ssh_packet_process:  Dispatching handler for packet type 98[\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "99[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff91][2024/09/06 09:14:06.919710, 3] ssh_message_handle_channel_request:  Received a trilead-ping channel_request for channel (43:100) (want_reply=1)[\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:06.919716, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=27][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,888 (Wire.java:92) DEBUG : http-outgoing-3 << "5e[\r][\n]"
2024-09-06 11:14:06,889 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]V[INF]: LN: Session 1: Received an SSH message "request-channel" of subtype "unknown".[\n]"
2024-09-06 11:14:06,889 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,889 (Wire.java:92) DEBUG : http-outgoing-3 << "77[\r][\n]"
2024-09-06 11:14:06,889 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]o[2024/09/06 09:14:06.919773, 3] ssh_message_reply_default:  Don't know what to default reply to 409755376 type[\n]"
2024-09-06 11:14:06,889 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:06,889 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.919585, 4] ssh_socket_unbuffered_read:  read 100
2024-09-06 11:14:06,889 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.919695, 3] ssh_packet_socket_callback:  packet: read type 98 [len=32,padding=9,comp=22,payload=22]
2024-09-06 11:14:06,889 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.919702, 3] ssh_packet_process:  Dispatching handler for packet type 98
2024-09-06 11:14:06,889 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.919710, 3] ssh_message_handle_channel_request:  Received a trilead-ping channel_request for channel (43:100) (want_reply=1)
2024-09-06 11:14:06,889 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.919716, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=27]
2024-09-06 11:14:06,889 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Session 1: Received an SSH message "request-channel" of subtype "unknown".
2024-09-06 11:14:06,889 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:06.919773, 3] ssh_message_reply_default:  Don't know what to default reply to 409755376 type
2024-09-06 11:14:11,866 (NotificationSubscriptionImpl.java:399)  WARN : ERROR - Transport connection wasn't started before!
2024-09-06 11:14:11,916 (NetconfScheduledTaskExecutor.java:36) DEBUG : NetconfScheduledTaskExecutor Using LifeCycle from parameter: AUTOMATIC
2024-09-06 11:14:11,916 (AbstractTransport.java:207) DEBUG : Trying to establish NETCONF session to node localhost
2024-09-06 11:14:11,917 (Log.java:220)  INFO : The 1 time connecting to node.
2024-09-06 11:14:11,917 (Ssh.java:43)  INFO : Creating a SSH connection to localhost:32800
2024-09-06 11:14:11,917 (AbstractCli.java:80) DEBUG : Connecting cli
2024-09-06 11:14:11,917 (ImplSsh.java:468) DEBUG : Creating a ssh connection: localhost:32800_ID539181
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[INF]: LN: Accepted a connection on 0.0.0.0:830 from 172.17.0.1:41650.[\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,105 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Accepted a connection on 0.0.0.0:830 from 172.17.0.1:41650.
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.136829, 3] ssh_pki_import_privkey_base64:  Trying to decode privkey passphrase=false[\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "7e[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]v[2024/09/06 09:14:12.137393, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 23[\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "4d[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]E[2024/09/06 09:14:12.137402, 4] ssh_socket_unbuffered_read:  read 29[\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "6f[\r][\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]g[2024/09/06 09:14:12.137404, 3] callback_receive_banner:  Received banner: SSH-2.0-TrileadSSH2Java_213[\n]"
2024-09-06 11:14:12,105 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.137406, 3] ssh_server_connection_callback:  SSH client banner: SSH-2.0-TrileadSSH2Java_213[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "6b[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]c[2024/09/06 09:14:12.137408, 3] ssh_analyze_banner:  Analyzing banner: SSH-2.0-TrileadSSH2Java_213[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "6c[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]d[2024/09/06 09:14:12.137410, 4] ssh_send_kex:  Sending KEXINIT packet, first_kex_packet_follows = 0[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "146[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x1]>[2024/09/06 09:14:12.137412, 4] ssh_list_kex:  kex algos: curve25519-sha256,curve25519-sha256@xxxxxxxxxx,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,kex-strict-s-v00@xxxxxxxxxxx[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "67[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]_[2024/09/06 09:14:12.137414, 4] ssh_list_kex:  server host key algo: rsa-sha2-512,rsa-sha2-256[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "bf[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb7][2024/09/06 09:14:12.137416, 4] ssh_list_kex:  encryption client->server: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "bf[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb7][2024/09/06 09:14:12.137417, 4] ssh_list_kex:  encryption server->client: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "a8[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffa0][2024/09/06 09:14:12.137419, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "a8[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffa0][2024/09/06 09:14:12.137420, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "6e[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]f[2024/09/06 09:14:12.137422, 4] ssh_list_kex:  compression algo client->server: none,zlib@xxxxxxxxxxx[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "6e[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]f[2024/09/06 09:14:12.137423, 4] ssh_list_kex:  compression algo server->client: none,zlib@xxxxxxxxxxx[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:12.137425, 4] ssh_list_kex:  languages client->server: [\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:12.137426, 4] ssh_list_kex:  languages server->client: [\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:12.137430, 3] packet_send2:  packet: wrote [type=20, len=788, padding_size=9, comp=778, payload=778][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "4c[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]D[2024/09/06 09:14:12.137432, 3] ssh_send_kex:  SSH_MSG_KEXINIT sent[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.137469, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.137471, 4] ssh_socket_unbuffered_write:  wrote 815[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:12.137472, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4[\n]"
2024-09-06 11:14:12,106 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.136829, 3] ssh_pki_import_privkey_base64:  Trying to decode privkey passphrase=false
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137393, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 23
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137402, 4] ssh_socket_unbuffered_read:  read 29
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137404, 3] callback_receive_banner:  Received banner: SSH-2.0-TrileadSSH2Java_213
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137406, 3] ssh_server_connection_callback:  SSH client banner: SSH-2.0-TrileadSSH2Java_213
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137408, 3] ssh_analyze_banner:  Analyzing banner: SSH-2.0-TrileadSSH2Java_213
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137410, 4] ssh_send_kex:  Sending KEXINIT packet, first_kex_packet_follows = 0
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137412, 4] ssh_list_kex:  kex algos: curve25519-sha256,curve25519-sha256@xxxxxxxxxx,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,kex-strict-s-v00@xxxxxxxxxxx
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137414, 4] ssh_list_kex:  server host key algo: rsa-sha2-512,rsa-sha2-256
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137416, 4] ssh_list_kex:  encryption client->server: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137417, 4] ssh_list_kex:  encryption server->client: chacha20-poly1305@xxxxxxxxxxx,aes256-gcm@xxxxxxxxxxx,aes128-gcm@xxxxxxxxxxx,aes256-ctr,aes192-ctr,aes128-ctr
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137419, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137420, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256,hmac-sha2-512
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137422, 4] ssh_list_kex:  compression algo client->server: none,zlib@xxxxxxxxxxx
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137423, 4] ssh_list_kex:  compression algo server->client: none,zlib@xxxxxxxxxxx
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137425, 4] ssh_list_kex:  languages client->server:
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137426, 4] ssh_list_kex:  languages server->client:
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137430, 3] packet_send2:  packet: wrote [type=20, len=788, padding_size=9, comp=778, payload=778]
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137432, 3] ssh_send_kex:  SSH_MSG_KEXINIT sent
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137469, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,106 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137471, 4] ssh_socket_unbuffered_write:  wrote 815
2024-09-06 11:14:12,107 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.137472, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 4
2024-09-06 11:14:12,137 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,137 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.169621, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,137 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169621, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.169651, 4] ssh_socket_unbuffered_read:  read 928[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:12.169656, 3] ssh_packet_socket_callback:  packet: read type 20 [len=900,padding=6,comp=893,payload=893][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.169659, 3] ssh_packet_process:  Dispatching handler for packet type 20[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.169662, 4] ssh_packet_kexinit:  KEXINIT received[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "129[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x1]![2024/09/06 09:14:12.169668, 4] ssh_list_kex:  kex algos: diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,curve25519-sha256,curve25519-sha256@xxxxxxxxxx[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "bf[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb7][2024/09/06 09:14:12.169670, 4] ssh_list_kex:  server host key algo: ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-256,rsa-sha2-512,ssh-rsa,ssh-dss[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "c0[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb8][2024/09/06 09:14:12.169671, 4] ssh_list_kex:  encryption client->server: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "c0[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffb8][2024/09/06 09:14:12.169673, 4] ssh_list_kex:  encryption server->client: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "d4[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffcc][2024/09/06 09:14:12.169674, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "d4[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffcc][2024/09/06 09:14:12.169676, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.169677, 4] ssh_list_kex:  compression algo client->server: none[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.169679, 4] ssh_list_kex:  compression algo server->client: none[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:12.169680, 4] ssh_list_kex:  languages client->server: [\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "52[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]J[2024/09/06 09:14:12.169682, 4] ssh_list_kex:  languages server->client: [\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "dc[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffffd4][2024/09/06 09:14:12.169708, 3] ssh_kex_select_methods:  Negotiated diffie-hellman-group-exchange-sha256,rsa-sha2-256,aes256-ctr,aes256-ctr,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,none,none,,[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "66[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]^[2024/09/06 09:14:12.169710, 3] crypt_set_algorithms_server:  Set output algorithm aes256-ctr[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:12.169713, 3] crypt_set_algorithms_server:  Set HMAC output algorithm to hmac-sha2-512-etm@xxxxxxxxxxx[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "65[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]][2024/09/06 09:14:12.169715, 3] crypt_set_algorithms_server:  Set input algorithm aes256-ctr[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.169716, 3] crypt_set_algorithms_server:  Set HMAC input algorithm to hmac-sha2-512-etm@xxxxxxxxxxx[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "6f[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]g[2024/09/06 09:14:12.169719, 3] ssh_packet_socket_callback:  Processing 24 bytes left in socket buffer[\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.169721, 3] ssh_packet_socket_callback:  packet: read type 34 [len=20,padding=6,comp=13,payload=13][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,138 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.169722, 3] ssh_packet_process:  Dispatching handler for packet type 34[\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.169725, 3] ssh_packet_server_dhgex_request:  dh-gex: DHGEX_REQUEST[1024:2048:4096][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:12.169734, 3] ssh_retrieve_dhgroup:  Unable to open moduli file: No such file or directory[\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:12.169779, 3] packet_send2:  packet: wrote [type=31, len=532, padding_size=8, comp=523, payload=523][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.169812, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.169814, 4] ssh_socket_unbuffered_write:  wrote 536[\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:12.169816, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:12,139 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169651, 4] ssh_socket_unbuffered_read:  read 928
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169656, 3] ssh_packet_socket_callback:  packet: read type 20 [len=900,padding=6,comp=893,payload=893]
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169659, 3] ssh_packet_process:  Dispatching handler for packet type 20
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169662, 4] ssh_packet_kexinit:  KEXINIT received
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169668, 4] ssh_list_kex:  kex algos: diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,curve25519-sha256,curve25519-sha256@xxxxxxxxxx
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169670, 4] ssh_list_kex:  server host key algo: ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-256,rsa-sha2-512,ssh-rsa,ssh-dss
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169671, 4] ssh_list_kex:  encryption client->server: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169673, 4] ssh_list_kex:  encryption server->client: aes256-ctr,aes192-ctr,aes128-ctr,blowfish-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-ctr,3des-cbc
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169674, 4] ssh_list_kex:  mac algo client->server: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169676, 4] ssh_list_kex:  mac algo server->client: hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-256-etm@xxxxxxxxxxx,hmac-sha2-512,hmac-sha2-256,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169677, 4] ssh_list_kex:  compression algo client->server: none
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169679, 4] ssh_list_kex:  compression algo server->client: none
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169680, 4] ssh_list_kex:  languages client->server:
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169682, 4] ssh_list_kex:  languages server->client:
2024-09-06 11:14:12,139 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169708, 3] ssh_kex_select_methods:  Negotiated diffie-hellman-group-exchange-sha256,rsa-sha2-256,aes256-ctr,aes256-ctr,hmac-sha2-512-etm@xxxxxxxxxxx,hmac-sha2-512-etm@xxxxxxxxxxx,none,none,,
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169710, 3] crypt_set_algorithms_server:  Set output algorithm aes256-ctr
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169713, 3] crypt_set_algorithms_server:  Set HMAC output algorithm to hmac-sha2-512-etm@xxxxxxxxxxx
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169715, 3] crypt_set_algorithms_server:  Set input algorithm aes256-ctr
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169716, 3] crypt_set_algorithms_server:  Set HMAC input algorithm to hmac-sha2-512-etm@xxxxxxxxxxx
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169719, 3] ssh_packet_socket_callback:  Processing 24 bytes left in socket buffer
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169721, 3] ssh_packet_socket_callback:  packet: read type 34 [len=20,padding=6,comp=13,payload=13]
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169722, 3] ssh_packet_process:  Dispatching handler for packet type 34
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169725, 3] ssh_packet_server_dhgex_request:  dh-gex: DHGEX_REQUEST[1024:2048:4096]
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169734, 3] ssh_retrieve_dhgroup:  Unable to open moduli file: No such file or directory
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169779, 3] packet_send2:  packet: wrote [type=31, len=532, padding_size=8, comp=523, payload=523]
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169812, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169814, 4] ssh_socket_unbuffered_write:  wrote 536
2024-09-06 11:14:12,140 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.169816, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:12.201743, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,170 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.201743, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.201779, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.201784, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:12.201787, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:12,170 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,171 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.201779, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,171 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.201784, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,171 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.201787, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:12.233910, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.233910, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.233938, 4] ssh_socket_unbuffered_read:  read 528[\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:12.233942, 3] ssh_packet_socket_callback:  packet: read type 32 [len=524,padding=6,comp=517,payload=517][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.233944, 3] ssh_packet_process:  Dispatching handler for packet type 32[\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "67[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]_[2024/09/06 09:14:12.233947, 3] ssh_packet_server_dhgex_init:  Received SSH_MSG_KEX_DHGEX_INIT[\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.251715, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:12.251856, 4] ssh_socket_unbuffered_write:  wrote 1096[\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:12.251927, 3] packet_send2:  packet: wrote [type=33, len=1092, padding_size=10, comp=1081, payload=1081][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.251991, 3] ssh_server_dh_process_init:  Sent KEX_DH_[GEX]_REPLY[\n]"
2024-09-06 11:14:12,220 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,220 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.233938, 4] ssh_socket_unbuffered_read:  read 528
2024-09-06 11:14:12,220 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.233942, 3] ssh_packet_socket_callback:  packet: read type 32 [len=524,padding=6,comp=517,payload=517]
2024-09-06 11:14:12,220 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.233944, 3] ssh_packet_process:  Dispatching handler for packet type 32
2024-09-06 11:14:12,220 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.233947, 3] ssh_packet_server_dhgex_init:  Received SSH_MSG_KEX_DHGEX_INIT
2024-09-06 11:14:12,220 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.251715, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.251856, 4] ssh_socket_unbuffered_write:  wrote 1096
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.251927, 3] packet_send2:  packet: wrote [type=33, len=1092, padding_size=10, comp=1081, payload=1081]
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.251991, 3] ssh_server_dh_process_init:  Sent KEX_DH_[GEX]_REPLY
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:12.252042, 3] packet_send2:  packet: wrote [type=21, len=12, padding_size=10, comp=1, payload=1][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "5a[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]R[2024/09/06 09:14:12.252148, 4] ssh_packet_set_newkeys:  called, direction = OUT [\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "61[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Y[2024/09/06 09:14:12.252249, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks[\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "61[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Y[2024/09/06 09:14:12.252318, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks[\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "57[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]O[2024/09/06 09:14:12.252543, 3] ssh_packet_send_newkeys:  SSH_MSG_NEWKEYS sent[\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:12.252624, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:12,221 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.252042, 3] packet_send2:  packet: wrote [type=21, len=12, padding_size=10, comp=1, payload=1]
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.252148, 4] ssh_packet_set_newkeys:  called, direction = OUT
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.252249, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.252318, 3] ssh_init_rekey_state:  Set rekey after 4294967296 blocks
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.252543, 3] ssh_packet_send_newkeys:  SSH_MSG_NEWKEYS sent
2024-09-06 11:14:12,221 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.252624, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "77[\r][\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]o[2024/09/06 09:14:12.265970, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 16[\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,234 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.265970, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 16
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.266263, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:12.266365, 4] ssh_socket_unbuffered_write:  wrote 16[\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:12.266449, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6[\n]"
2024-09-06 11:14:12,234 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,234 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.266263, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,234 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.266365, 4] ssh_socket_unbuffered_write:  wrote 16
2024-09-06 11:14:12,234 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.266449, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 6
2024-09-06 11:14:12,265 (ImplSsh.java:493) DEBUG : Done creating a ssh connection: localhost:32800_ID539181
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.298008, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,266 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298008, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "4d[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]E[2024/09/06 09:14:12.298364, 4] ssh_socket_unbuffered_read:  read 16[\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:12.298494, 3] ssh_packet_socket_callback:  packet: read type 21 [len=12,padding=10,comp=1,payload=1][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.298573, 3] ssh_packet_process:  Dispatching handler for packet type 21[\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,266 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298364, 4] ssh_socket_unbuffered_read:  read 16
2024-09-06 11:14:12,266 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298494, 3] ssh_packet_socket_callback:  packet: read type 21 [len=12,padding=10,comp=1,payload=1]
2024-09-06 11:14:12,266 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298573, 3] ssh_packet_process:  Dispatching handler for packet type 21
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "56[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]N[2024/09/06 09:14:12.298651, 3] ssh_packet_newkeys:  Received SSH_MSG_NEWKEYS[\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "59[\r][\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Q[2024/09/06 09:14:12.298716, 4] ssh_packet_set_newkeys:  called, direction = IN [\n]"
2024-09-06 11:14:12,266 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.298791, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298651, 3] ssh_packet_newkeys:  Received SSH_MSG_NEWKEYS
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298716, 4] ssh_packet_set_newkeys:  called, direction = IN
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298791, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.298867, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "6d[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]e[2024/09/06 09:14:12.298940, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 7[\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:12.299019, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298867, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.298940, 3] ssh_handle_key_exchange:  ssh_handle_key_exchange: current state : 7
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.299019, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.299120, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.299186, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,267 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.299120, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,267 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.299186, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:12.330159, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,298 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330159, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.330334, 4] ssh_socket_unbuffered_read:  read 216[\n]"
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,298 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.330476, 3] ssh_packet_socket_callback:  packet: read type 5 [len=32,padding=14,comp=17,payload=17][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "63[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][[2024/09/06 09:14:12.330535, 3] ssh_packet_process:  Dispatching handler for packet type 5[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:12.330595, 3] ssh_packet_service_request:  Received a SERVICE_REQUEST for service ssh-userauth[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.330647, 3] ssh_packet_socket_callback:  Processing 116 bytes left in socket buffer[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330334, 4] ssh_socket_unbuffered_read:  read 216
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330476, 3] ssh_packet_socket_callback:  packet: read type 5 [len=32,padding=14,comp=17,payload=17]
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330535, 3] ssh_packet_process:  Dispatching handler for packet type 5
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330595, 3] ssh_packet_service_request:  Received a SERVICE_REQUEST for service ssh-userauth
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330647, 3] ssh_packet_socket_callback:  Processing 116 bytes left in socket buffer
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.330723, 3] ssh_packet_socket_callback:  packet: read type 50 [len=48,padding=9,comp=38,payload=38][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.330800, 3] ssh_packet_process:  Dispatching handler for packet type 50[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "8e[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff86][2024/09/06 09:14:12.330889, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method none for user 'netconf'[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "58[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]P[INF]: LN: Received an SSH message "request-service" of subtype "ssh-userauth".[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "7e[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]v[2024/09/06 09:14:12.331040, 3] ssh_message_service_reply_success:  Sending a SERVICE_ACCEPT for service ssh-userauth[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.331221, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,299 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330723, 3] ssh_packet_socket_callback:  packet: read type 50 [len=48,padding=9,comp=38,payload=38]
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330800, 3] ssh_packet_process:  Dispatching handler for packet type 50
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.330889, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method none for user 'netconf'
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-service" of subtype "ssh-userauth".
2024-09-06 11:14:12,299 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.331040, 3] ssh_message_service_reply_success:  Sending a SERVICE_ACCEPT for service ssh-userauth
2024-09-06 11:14:12,300 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.331221, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,300 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,300 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.331330, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:12,300 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,300 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,300 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.331411, 3] packet_send2:  packet: wrote [type=6, len=28, padding_size=14, comp=17, payload=17][\n]"
2024-09-06 11:14:12,300 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,300 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.331330, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:12,300 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.331411, 3] packet_send2:  packet: wrote [type=6, len=28, padding_size=14, comp=17, payload=17]
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "4d[\r][\n]"
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]E[INF]: LN: Received an SSH message "request-auth" of subtype "none".[\n]"
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,330 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-auth" of subtype "none".
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "89[\r][\n]"
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff81][2024/09/06 09:14:12.362356, 3] ssh_auth_reply_default:  Sending a auth failure. methods that can continue: keyboard-interactive[\n]"
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.362445, 3] packet_send2:  packet: wrote [type=51, len=28, padding_size=5, comp=26, payload=26][\n]"
2024-09-06 11:14:12,330 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,330 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.362356, 3] ssh_auth_reply_default:  Sending a auth failure. methods that can continue: keyboard-interactive
2024-09-06 11:14:12,330 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.362445, 3] packet_send2:  packet: wrote [type=51, len=28, padding_size=5, comp=26, payload=26]
2024-09-06 11:14:12,362 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.394582, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100[\n]"
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,363 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.394582, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.394620, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.394623, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:12,363 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,363 (ImplSsh.java:386) DEBUG : Available authentication methods: [keyboard-interactive]
2024-09-06 11:14:12,363 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.394620, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,363 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.394623, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:12,363 (ImplSsh.java:388) DEBUG : Ignoring authentication methods: [gssapi-with-mic]
2024-09-06 11:14:12,363 (ImplSsh.java:398) DEBUG : Trying to authenticate with method: keyboard-interactive
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.426709, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.426709, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.426758, 4] ssh_socket_unbuffered_read:  read 148[\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:12.426826, 3] ssh_packet_socket_callback:  packet: read type 50 [len=80,padding=17,comp=62,payload=62][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.426830, 3] ssh_packet_process:  Dispatching handler for packet type 50[\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "9e[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff96][2024/09/06 09:14:12.426834, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method keyboard-interactive for user 'netconf'[\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.426837, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.426839, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "54[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]L[INF]: LN: Received an SSH message "request-auth" of subtype "interactive".[\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,395 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.427919, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.428000, 4] ssh_socket_unbuffered_write:  wrote 180[\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:12.428047, 3] packet_send2:  packet: wrote [type=60, len=108, padding_size=6, comp=105, payload=105][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "a5[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff9d][2024/09/06 09:14:12.428097, 3] ssh_message_auth_interactive_request:  Warning: Got a keyboard-interactive response but it seems we didn't send the request.[\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:12.428166, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.428214, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.428279, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,396 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.426758, 4] ssh_socket_unbuffered_read:  read 148
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.426826, 3] ssh_packet_socket_callback:  packet: read type 50 [len=80,padding=17,comp=62,payload=62]
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.426830, 3] ssh_packet_process:  Dispatching handler for packet type 50
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.426834, 3] ssh_packet_userauth_request:  Auth request for service ssh-connection, method keyboard-interactive for user 'netconf'
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.426837, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.426839, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-auth" of subtype "interactive".
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.427919, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.428000, 4] ssh_socket_unbuffered_write:  wrote 180
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.428047, 3] packet_send2:  packet: wrote [type=60, len=108, padding_size=6, comp=105, payload=105]
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.428097, 3] ssh_message_auth_interactive_request:  Warning: Got a keyboard-interactive response but it seems we didn't send the request.
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.428166, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.428214, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,396 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.428279, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:12.458679, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,426 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.458679, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.458885, 4] ssh_socket_unbuffered_read:  read 100[\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:12.458992, 3] ssh_packet_socket_callback:  packet: read type 61 [len=32,padding=15,comp=16,payload=16][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.459048, 3] ssh_packet_process:  Dispatching handler for packet type 61[\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "5e[\r][\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]V[2024/09/06 09:14:12.459093, 3] ssh_packet_userauth_info_response:  kbdint: 1 answers[\n]"
2024-09-06 11:14:12,426 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,426 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.458885, 4] ssh_socket_unbuffered_read:  read 100
2024-09-06 11:14:12,426 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.458992, 3] ssh_packet_socket_callback:  packet: read type 61 [len=32,padding=15,comp=16,payload=16]
2024-09-06 11:14:12,426 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.459048, 3] ssh_packet_process:  Dispatching handler for packet type 61
2024-09-06 11:14:12,426 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.459093, 3] ssh_packet_userauth_info_response:  kbdint: 1 answers
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.490058, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,458 (ImplSsh.java:412) DEBUG : keyboard-interactive authentication successful? true
2024-09-06 11:14:12,458 (ImplSsh.java:424) DEBUG : Authentication Complete: localhost:32800_ID539181
2024-09-06 11:14:12,458 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.490058, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,458 (ImplSsh.java:243) DEBUG : Opening a ssh session: localhost:32800_ID539181
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:12.490375, 4] ssh_socket_unbuffered_write:  wrote 84[\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:12.490463, 3] packet_send2:  packet: wrote [type=52, len=12, padding_size=14, comp=1, payload=1][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "31[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0])[INF]: LN: User "netconf" authenticated.[\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:12,458 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:12.490757, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,459 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,459 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.490375, 4] ssh_socket_unbuffered_write:  wrote 84
2024-09-06 11:14:12,459 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.490463, 3] packet_send2:  packet: wrote [type=52, len=12, padding_size=14, comp=1, payload=1]
2024-09-06 11:14:12,459 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: User "netconf" authenticated.
2024-09-06 11:14:12,459 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.490757, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0
2024-09-06 11:14:12,459 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,459 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.490851, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,459 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,459 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,459 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.490913, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,459 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,459 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.490851, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,459 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.490913, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:12.522741, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,491 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.522741, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.523034, 4] ssh_socket_unbuffered_read:  read 100[\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.523217, 3] ssh_packet_socket_callback:  packet: read type 90 [len=32,padding=7,comp=24,payload=24][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.523324, 3] ssh_packet_process:  Dispatching handler for packet type 90[\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "6a[\r][\n]"
2024-09-06 11:14:12,491 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]b[2024/09/06 09:14:12.523398, 3] ssh_packet_channel_open:  Clients wants to open a session channel[\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.523481, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=8, in_blocks=8][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523034, 4] ssh_socket_unbuffered_read:  read 100
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523217, 3] ssh_packet_socket_callback:  packet: read type 90 [len=32,padding=7,comp=24,payload=24]
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523324, 3] ssh_packet_process:  Dispatching handler for packet type 90
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523398, 3] ssh_packet_channel_open:  Clients wants to open a session channel
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523481, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=8, in_blocks=8]
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "58[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]P[INF]: LN: Received an SSH message "request-channel-open" of subtype "session".[\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "8e[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff86][2024/09/06 09:14:12.523651, 3] ssh_message_channel_request_open_reply_accept_channel:  Accepting a channel request_open for chan 100[\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.523730, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-channel-open" of subtype "session".
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523651, 3] ssh_message_channel_request_open_reply_accept_channel:  Accepting a channel request_open for chan 100
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523730, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9]
2024-09-06 11:14:12,492 (ImplSsh.java:250) DEBUG : Done opening a ssh session: localhost:32800_ID539181
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.523964, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,492 (ImplSsh.java:279) DEBUG : Starting subsystem: netconf
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.524060, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.524134, 3] packet_send2:  packet: wrote [type=91, len=28, padding_size=14, comp=17, payload=17][\n]"
2024-09-06 11:14:12,492 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.523964, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.524060, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:12,492 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.524134, 3] packet_send2:  packet: wrote [type=91, len=28, padding_size=14, comp=17, payload=17]
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.554831, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,523 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.554831, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.555031, 4] ssh_socket_unbuffered_read:  read 116[\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:12.555170, 3] ssh_packet_socket_callback:  packet: read type 98 [len=48,padding=17,comp=30,payload=30][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.555230, 3] ssh_packet_process:  Dispatching handler for packet type 98[\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "96[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff8e][2024/09/06 09:14:12.555306, 3] ssh_message_handle_channel_request:  Received a subsystem channel_request for channel (43:100) (want_reply=1)[\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,523 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.555375, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.555434, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.555481, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555031, 4] ssh_socket_unbuffered_read:  read 116
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555170, 3] ssh_packet_socket_callback:  packet: read type 98 [len=48,padding=17,comp=30,payload=30]
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555230, 3] ssh_packet_process:  Dispatching handler for packet type 98
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555306, 3] ssh_message_handle_channel_request:  Received a subsystem channel_request for channel (43:100) (want_reply=1)
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555375, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9]
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555434, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555481, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,524 (ImplSsh.java:286) DEBUG : Done starting netconf session
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "55[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]M[INF]: LN: Received an SSH message "request-channel" of subtype "subsystem".[\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "85[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]}[2024/09/06 09:14:12.555689, 3] ssh_message_channel_request_reply_success:  Sending a channel_request success to channel 100[\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,524 (AbstractCli.java:84) DEBUG : Done connecting cli
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.555762, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.555972, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:12.556062, 4] ssh_socket_unbuffered_write:  wrote 84[\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:12.556130, 3] packet_send2:  packet: wrote [type=99, len=12, padding_size=10, comp=5, payload=5][\n]"
2024-09-06 11:14:12,524 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Received an SSH message "request-channel" of subtype "subsystem".
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555689, 3] ssh_message_channel_request_reply_success:  Sending a channel_request success to channel 100
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555762, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=9, in_blocks=9]
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.555972, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556062, 4] ssh_socket_unbuffered_write:  wrote 84
2024-09-06 11:14:12,524 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556130, 3] packet_send2:  packet: wrote [type=99, len=12, padding_size=10, comp=5, payload=5]
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.556262, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=73, in_blocks=73][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:12.556411, 3] packet_send2:  packet: wrote [type=94, len=1036, padding_size=12, comp=1027, payload=1027][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.556491, 3] channel_write_common:  ssh_channel_write wrote 1018 bytes[\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:12.556582, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 1108[\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556262, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=73, in_blocks=73]
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556411, 3] packet_send2:  packet: wrote [type=94, len=1036, padding_size=12, comp=1027, payload=1027]
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556491, 3] channel_write_common:  ssh_channel_write wrote 1018 bytes
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556582, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 1108
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.556718, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:12.556822, 4] ssh_socket_unbuffered_write:  wrote 1108[\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:12.556916, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=136, in_blocks=72][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556718, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556822, 4] ssh_socket_unbuffered_write:  wrote 1108
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.556916, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=136, in_blocks=72]
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "82[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]z[2024/09/06 09:14:12.557041, 3] packet_send2:  packet: wrote [type=94, len=1020, padding_size=8, comp=1015, payload=1015][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.557124, 3] channel_write_common:  ssh_channel_write wrote 1006 bytes[\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:12.557196, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 1092[\n]"
2024-09-06 11:14:12,525 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557041, 3] packet_send2:  packet: wrote [type=94, len=1020, padding_size=8, comp=1015, payload=1015]
2024-09-06 11:14:12,525 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557124, 3] channel_write_common:  ssh_channel_write wrote 1006 bytes
2024-09-06 11:14:12,526 (Ssh.java:82)  INFO : Established a SSH connection to localhost:32800
2024-09-06 11:14:12,526 (AbstractTransport.java:546) DEBUG : Starting to exchange the <hello> messages
2024-09-06 11:14:12,526 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557196, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 1092
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.557312, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:12.557397, 4] ssh_socket_unbuffered_write:  wrote 1092[\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:12.557481, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=71][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:12.557604, 3] packet_send2:  packet: wrote [type=94, len=1004, padding_size=14, comp=993, payload=993][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "61[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Y[2024/09/06 09:14:12.557689, 3] channel_write_common:  ssh_channel_write wrote 984 bytes[\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "79[\r][\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]q[2024/09/06 09:14:12.557767, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 1076[\n]"
2024-09-06 11:14:12,526 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,526 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557312, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,527 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557397, 4] ssh_socket_unbuffered_write:  wrote 1092
2024-09-06 11:14:12,527 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557481, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=71]
2024-09-06 11:14:12,527 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557604, 3] packet_send2:  packet: wrote [type=94, len=1004, padding_size=14, comp=993, payload=993]
2024-09-06 11:14:12,527 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557689, 3] channel_write_common:  ssh_channel_write wrote 984 bytes
2024-09-06 11:14:12,527 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557767, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 1076
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.557934, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "51[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]I[2024/09/06 09:14:12.557943, 4] ssh_socket_unbuffered_write:  wrote 1076[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.557949, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=9][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.557999, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "5f[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]W[2024/09/06 09:14:12.558003, 3] channel_write_common:  ssh_channel_write wrote 6 bytes[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.558008, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.558192, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.558200, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:12.558213, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.558217, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.558220, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,527 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,528 (PowerLogger.java:328) DEBUG : <hello xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"><capabilities><capability>urn:ietf:params:netconf:base:1.0</capability><capability>urn:ietf:params:netconf:base:1.1</capability><capability>urn:ietf:params:netconf:capability:writable-running:1.0</capability><capability>urn:ietf:params:netconf:capability:candidate:1.0</capability><capability>urn:ietf:params:netconf:capability:confirmed-commit:1.1</capability><capability>urn:ietf:params:netconf:capability:rollback-on-error:1.0</capability><capability>urn:ietf:params:netconf:capability:validate:1.1</capability><capability>urn:ietf:params:netconf:capability:startup:1.0</capability><capability>urn:ietf:params:netconf:capability:xpath:1.0</capability><capability>urn:ietf:params:netconf:capability:with-defaults:1.0?basic-mode=explicit&amp;also-supported=report-all,report-all-tagged,trim,explicit</capability><capability>urn:ietf:params:netconf:capability:notification:1.0</capability><capability>urn:ietf:params:netconf:capability:interleave:1.0</capability><capability>urn:ietf:params:netconf:capability:url:1.0?scheme=ftp,ftps,http,https,scp,sftp</capability><capability>urn:ietf:params:xml:ns:yang:ietf-yang-metadata?module=ietf-yang-metadata&amp;revision=2016-08-05</capability><capability>urn:ietf:params:xml:ns:yang:ietf-inet-types?module=ietf-inet-types&amp;revision=2013-07-15</capability><capability>urn:ietf:params:xml:ns:yang:ietf-yang-types?module=ietf-yang-types&amp;revision=2013-07-15</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-acm?module=ietf-netconf-acm&amp;revision=2018-02-14</capability><capability>urn:ietf:params:netconf:capability:yang-library:1.1?revision=2019-01-04&amp;content-id=2008448144</capability><capability>urn:sysrepo:plugind?module=sysrepo-plugind&amp;revision=2022-08-26</capability><capability>urn:ietf:params:xml:ns:netconf:base:1.0?module=ietf-netconf&amp;revision=2013-09-29&amp;features=writable-running,candidate,confirmed-commit,rollback-on-error,validate,startup,url,xpath</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-with-defaults?module=ietf-netconf-with-defaults&amp;revision=2011-06-01</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-notifications?module=ietf-netconf-notifications&amp;revision=2012-02-06</capability><capability>urn:ietf:params:xml:ns:netconf:notification:1.0?module=notifications&amp;revision=2008-07-14</capability><capability>urn:ietf:params:xml:ns:netmod:notification?module=nc-notifications&amp;revision=2008-07-14</capability><capability>urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring?module=ietf-netconf-monitoring&amp;revision=2010-10-04</capability><capability>urn:ietf:params:xml:ns:yang:ietf-x509-cert-to-name?module=ietf-x509-cert-to-name&amp;revision=2014-12-10</capability><capability>urn:ietf:params:xml:ns:yang:iana-crypt-hash?module=iana-crypt-hash&amp;revision=2014-04-04&amp;features=crypt-hash-md5,crypt-hash-sha-256,crypt-hash-sha-512</capability></capabilities><session-id>2</session-id></hello>
2024-09-06 11:14:12,528 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557934, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557943, 4] ssh_socket_unbuffered_write:  wrote 1076
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557949, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=9]
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.557999, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15]
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.558003, 3] channel_write_common:  ssh_channel_write wrote 6 bytes
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.558008, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.558192, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.558200, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.558213, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.558217, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,529 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.558220, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:12.560646, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.560687, 4] ssh_socket_unbuffered_read:  read 100[\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.560775, 3] ssh_packet_socket_callback:  packet: read type 98 [len=32,padding=9,comp=22,payload=22][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.560779, 3] ssh_packet_process:  Dispatching handler for packet type 98[\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,529 (Wire.java:92) DEBUG : http-outgoing-3 << "99[\r][\n]"
2024-09-06 11:14:12,530 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0xffffff91][2024/09/06 09:14:12.560785, 3] ssh_message_handle_channel_request:  Received a trilead-ping channel_request for channel (43:100) (want_reply=1)[\n]"
2024-09-06 11:14:12,530 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,530 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:12,530 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:12.560789, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=10][\n]"
2024-09-06 11:14:12,530 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,530 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.560646, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0
2024-09-06 11:14:12,530 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.560687, 4] ssh_socket_unbuffered_read:  read 100
2024-09-06 11:14:12,530 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.560775, 3] ssh_packet_socket_callback:  packet: read type 98 [len=32,padding=9,comp=22,payload=22]
2024-09-06 11:14:12,530 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.560779, 3] ssh_packet_process:  Dispatching handler for packet type 98
2024-09-06 11:14:12,530 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.560785, 3] ssh_message_handle_channel_request:  Received a trilead-ping channel_request for channel (43:100) (want_reply=1)
2024-09-06 11:14:12,530 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.560789, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=10]
2024-09-06 11:14:12,533 (AbstractTransport.java:586) DEBUG : The exchange of <hello> messages phase is completed, the session ID is 2
2024-09-06 11:14:12,534 (AbstractTransport.java:243)  INFO : Established NETCONF session to node 'localhost' in '617' milliseconds.
2024-09-06 11:14:12,534 (PowerLogger.java:338) DEBUG : startKeepAliveThread() on session 2
2024-09-06 11:14:12,534 (PowerLogger.java:328) DEBUG : KeepAlive not started since either not enabled or keepalive period is set to 0 or both.
2024-09-06 11:14:12,534 (Netconf.java:25) DEBUG : Created Netconf instance for Netconf1.0
2024-09-06 11:14:12,571 (PowerLogger.java:328) DEBUG :  <rpc message-id="2" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
   <edit-config>
     <target>
       <running/>
     </target>
     <config>
       <netconf-server xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-server">
         <listen>
           <idle-timeout>180</idle-timeout>
           <endpoints>
             <endpoint>
               <name>default-ssh</name>
               <ssh>
                 <tcp-server-parameters>
                   <local-address>0.0.0.0</local-address>
                   <local-port>830</local-port>
                   <keepalives>
                     <idle-time>7200</idle-time>
                     <max-probes>9</max-probes>
                     <probe-interval>3</probe-interval>
                   </keepalives>
                 </tcp-server-parameters>
                 <ssh-server-parameters>
                   <server-identity>
                     <host-key>
                       <name>default-key</name>
                       <public-key>
                         <central-keystore-reference>genkey</central-keystore-reference>
                       </public-key>
                     </host-key>
                   </server-identity>
                   <client-authentication>
                     <users>
                       <user>
                         <name>netconf</name>
                         <keyboard-interactive xmlns="urn:cesnet:libnetconf2-netconf-server">
                           <use-system-auth/>
                         </keyboard-interactive>
                       </user>
                     </users>
                   </client-authentication>
                 </ssh-server-parameters>
               </ssh>
             </endpoint>
           </endpoints>
         </listen>
       </netconf-server>
     </config>
   </edit-config>
 </rpc>
]]>]]>
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "75[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]m[2024/09/06 09:14:12.621776, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0[\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,600 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621776, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN ), out buffer 0
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:12.621815, 4] ssh_socket_unbuffered_read:  read 2392[\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:12.621882, 3] ssh_packet_socket_callback:  packet: read type 94 [len=336,padding=9,comp=326,payload=326][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.621886, 3] ssh_packet_process:  Dispatching handler for packet type 94[\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "81[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]y[2024/09/06 09:14:12.621890, 3] channel_rcv_data:  Channel receiving 317 bytes data (local win=32000 remote win=1061946)[\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.621893, 3] channel_default_bufferize:  placing 317 bytes into channel buffer (stdout)[\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.621898, 3] channel_rcv_data:  Channel windows are now (local win=31683 remote win=1061946)[\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.621901, 3] ssh_packet_socket_callback:  Processing 1988 bytes left in socket buffer[\n]"
2024-09-06 11:14:12,600 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "87[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][0x7f][2024/09/06 09:14:12.621925, 3] ssh_packet_socket_callback:  packet: read type 94 [len=1920,padding=19,comp=1900,payload=1900][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.621927, 3] ssh_packet_process:  Dispatching handler for packet type 94[\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "82[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]z[2024/09/06 09:14:12.621930, 3] channel_rcv_data:  Channel receiving 1891 bytes data (local win=31683 remote win=1061946)[\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "74[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]l[2024/09/06 09:14:12.621933, 3] channel_default_bufferize:  placing 1891 bytes into channel buffer (stdout)[\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.621935, 3] channel_rcv_data:  Channel windows are now (local win=29792 remote win=1061946)[\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.621937, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=148][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.621939, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=148][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.621944, 3] ssh_channel_read_timeout:  Read (6) buffered : 2208 bytes. Window: 29792[\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.621947, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=148][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.621977, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "4f[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]G[2024/09/06 09:14:12.621980, 4] ssh_socket_unbuffered_write:  wrote 84[\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.621982, 3] packet_send2:  packet: wrote [type=93, len=12, padding_size=6, comp=9, payload=9][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "67[\r][\n]"
2024-09-06 11:14:12,601 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]_[2024/09/06 09:14:12.621986, 3] grow_window:  growing window (channel 43:100) by 2065158 bytes[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.621989, 3] ssh_channel_read_timeout:  Read (6) buffered : 2202 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.621993, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.621996, 3] ssh_channel_read_timeout:  Read (6) buffered : 2196 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.621998, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622001, 3] ssh_channel_read_timeout:  Read (6) buffered : 2190 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622004, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622006, 3] ssh_channel_read_timeout:  Read (6) buffered : 2184 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622007, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622009, 3] ssh_channel_read_timeout:  Read (6) buffered : 2178 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622011, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622012, 3] ssh_channel_read_timeout:  Read (6) buffered : 2172 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622014, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622016, 3] ssh_channel_read_timeout:  Read (6) buffered : 2166 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622017, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622019, 3] ssh_channel_read_timeout:  Read (6) buffered : 2160 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622021, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622039, 3] ssh_channel_read_timeout:  Read (6) buffered : 2154 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622043, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622045, 3] ssh_channel_read_timeout:  Read (6) buffered : 2148 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622047, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622049, 3] ssh_channel_read_timeout:  Read (6) buffered : 2142 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622051, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622053, 3] ssh_channel_read_timeout:  Read (6) buffered : 2136 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622055, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,602 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622057, 3] ssh_channel_read_timeout:  Read (6) buffered : 2130 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622059, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622062, 3] ssh_channel_read_timeout:  Read (6) buffered : 2124 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622065, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622067, 3] ssh_channel_read_timeout:  Read (6) buffered : 2118 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622070, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622073, 3] ssh_channel_read_timeout:  Read (6) buffered : 2112 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622076, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622079, 3] ssh_channel_read_timeout:  Read (6) buffered : 2106 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622084, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622087, 3] ssh_channel_read_timeout:  Read (6) buffered : 2100 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622089, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622092, 3] ssh_channel_read_timeout:  Read (6) buffered : 2094 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622094, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,603 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,603 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621815, 4] ssh_socket_unbuffered_read:  read 2392
2024-09-06 11:14:12,603 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621882, 3] ssh_packet_socket_callback:  packet: read type 94 [len=336,padding=9,comp=326,payload=326]
2024-09-06 11:14:12,603 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621886, 3] ssh_packet_process:  Dispatching handler for packet type 94
2024-09-06 11:14:12,603 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621890, 3] channel_rcv_data:  Channel receiving 317 bytes data (local win=32000 remote win=1061946)
2024-09-06 11:14:12,603 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621893, 3] channel_default_bufferize:  placing 317 bytes into channel buffer (stdout)
2024-09-06 11:14:12,603 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621898, 3] channel_rcv_data:  Channel windows are now (local win=31683 remote win=1061946)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621901, 3] ssh_packet_socket_callback:  Processing 1988 bytes left in socket buffer
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621925, 3] ssh_packet_socket_callback:  packet: read type 94 [len=1920,padding=19,comp=1900,payload=1900]
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621927, 3] ssh_packet_process:  Dispatching handler for packet type 94
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621930, 3] channel_rcv_data:  Channel receiving 1891 bytes data (local win=31683 remote win=1061946)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621933, 3] channel_default_bufferize:  placing 1891 bytes into channel buffer (stdout)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621935, 3] channel_rcv_data:  Channel windows are now (local win=29792 remote win=1061946)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621937, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=148]
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621939, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=148]
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621944, 3] ssh_channel_read_timeout:  Read (6) buffered : 2208 bytes. Window: 29792
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621947, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=198, in_blocks=148]
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621977, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621980, 4] ssh_socket_unbuffered_write:  wrote 84
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621982, 3] packet_send2:  packet: wrote [type=93, len=12, padding_size=6, comp=9, payload=9]
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621986, 3] grow_window:  growing window (channel 43:100) by 2065158 bytes
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621989, 3] ssh_channel_read_timeout:  Read (6) buffered : 2202 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621993, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621996, 3] ssh_channel_read_timeout:  Read (6) buffered : 2196 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.621998, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622001, 3] ssh_channel_read_timeout:  Read (6) buffered : 2190 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622004, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622006, 3] ssh_channel_read_timeout:  Read (6) buffered : 2184 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622007, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622009, 3] ssh_channel_read_timeout:  Read (6) buffered : 2178 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622011, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622012, 3] ssh_channel_read_timeout:  Read (6) buffered : 2172 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622014, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622016, 3] ssh_channel_read_timeout:  Read (6) buffered : 2166 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622017, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622019, 3] ssh_channel_read_timeout:  Read (6) buffered : 2160 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622021, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622039, 3] ssh_channel_read_timeout:  Read (6) buffered : 2154 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622043, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622045, 3] ssh_channel_read_timeout:  Read (6) buffered : 2148 bytes. Window: 2094950
2024-09-06 11:14:12,604 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622047, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622049, 3] ssh_channel_read_timeout:  Read (6) buffered : 2142 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622051, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622053, 3] ssh_channel_read_timeout:  Read (6) buffered : 2136 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622055, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622057, 3] ssh_channel_read_timeout:  Read (6) buffered : 2130 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622059, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622062, 3] ssh_channel_read_timeout:  Read (6) buffered : 2124 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622065, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622067, 3] ssh_channel_read_timeout:  Read (6) buffered : 2118 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622070, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622073, 3] ssh_channel_read_timeout:  Read (6) buffered : 2112 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622076, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622079, 3] ssh_channel_read_timeout:  Read (6) buffered : 2106 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622084, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622087, 3] ssh_channel_read_timeout:  Read (6) buffered : 2100 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622089, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622092, 3] ssh_channel_read_timeout:  Read (6) buffered : 2094 bytes. Window: 2094950
2024-09-06 11:14:12,605 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622094, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622096, 3] ssh_channel_read_timeout:  Read (6) buffered : 2088 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622098, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622100, 3] ssh_channel_read_timeout:  Read (6) buffered : 2082 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622101, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622103, 3] ssh_channel_read_timeout:  Read (6) buffered : 2076 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622105, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,605 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622106, 3] ssh_channel_read_timeout:  Read (6) buffered : 2070 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622108, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622110, 3] ssh_channel_read_timeout:  Read (6) buffered : 2064 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622112, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622114, 3] ssh_channel_read_timeout:  Read (6) buffered : 2058 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622116, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622118, 3] ssh_channel_read_timeout:  Read (6) buffered : 2052 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622119, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622122, 3] ssh_channel_read_timeout:  Read (6) buffered : 2046 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622124, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622126, 3] ssh_channel_read_timeout:  Read (6) buffered : 2040 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622128, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622130, 3] ssh_channel_read_timeout:  Read (6) buffered : 2034 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622131, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622133, 3] ssh_channel_read_timeout:  Read (6) buffered : 2028 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622135, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622136, 3] ssh_channel_read_timeout:  Read (6) buffered : 2022 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622138, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622140, 3] ssh_channel_read_timeout:  Read (6) buffered : 2016 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622142, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622143, 3] ssh_channel_read_timeout:  Read (6) buffered : 2010 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,606 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622145, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622147, 3] ssh_channel_read_timeout:  Read (6) buffered : 2004 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622149, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622151, 3] ssh_channel_read_timeout:  Read (6) buffered : 1998 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622152, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622154, 3] ssh_channel_read_timeout:  Read (6) buffered : 1992 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622156, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622157, 3] ssh_channel_read_timeout:  Read (6) buffered : 1986 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622159, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622161, 3] ssh_channel_read_timeout:  Read (6) buffered : 1980 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622164, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622166, 3] ssh_channel_read_timeout:  Read (6) buffered : 1974 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622169, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,607 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622172, 3] ssh_channel_read_timeout:  Read (6) buffered : 1968 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622174, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622175, 3] ssh_channel_read_timeout:  Read (6) buffered : 1962 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622177, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622179, 3] ssh_channel_read_timeout:  Read (6) buffered : 1956 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622181, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622182, 3] ssh_channel_read_timeout:  Read (6) buffered : 1950 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622184, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622186, 3] ssh_channel_read_timeout:  Read (6) buffered : 1944 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622188, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622190, 3] ssh_channel_read_timeout:  Read (6) buffered : 1938 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622192, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,609 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622193, 3] ssh_channel_read_timeout:  Read (6) buffered : 1932 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622195, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622197, 3] ssh_channel_read_timeout:  Read (6) buffered : 1926 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622198, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622200, 3] ssh_channel_read_timeout:  Read (6) buffered : 1920 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622202, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622203, 3] ssh_channel_read_timeout:  Read (6) buffered : 1914 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622205, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622207, 3] ssh_channel_read_timeout:  Read (6) buffered : 1908 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622209, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622210, 3] ssh_channel_read_timeout:  Read (6) buffered : 1902 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,610 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,611 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,611 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622212, 3"
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622096, 3] ssh_channel_read_timeout:  Read (6) buffered : 2088 bytes. Window: 2094950
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622098, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622100, 3] ssh_channel_read_timeout:  Read (6) buffered : 2082 bytes. Window: 2094950
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622101, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622103, 3] ssh_channel_read_timeout:  Read (6) buffered : 2076 bytes. Window: 2094950
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622105, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622106, 3] ssh_channel_read_timeout:  Read (6) buffered : 2070 bytes. Window: 2094950
2024-09-06 11:14:12,611 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622108, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622110, 3] ssh_channel_read_timeout:  Read (6) buffered : 2064 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622112, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622114, 3] ssh_channel_read_timeout:  Read (6) buffered : 2058 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622116, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622118, 3] ssh_channel_read_timeout:  Read (6) buffered : 2052 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622119, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622122, 3] ssh_channel_read_timeout:  Read (6) buffered : 2046 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622124, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622126, 3] ssh_channel_read_timeout:  Read (6) buffered : 2040 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622128, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622130, 3] ssh_channel_read_timeout:  Read (6) buffered : 2034 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622131, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622133, 3] ssh_channel_read_timeout:  Read (6) buffered : 2028 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622135, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622136, 3] ssh_channel_read_timeout:  Read (6) buffered : 2022 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622138, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622140, 3] ssh_channel_read_timeout:  Read (6) buffered : 2016 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622142, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622143, 3] ssh_channel_read_timeout:  Read (6) buffered : 2010 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622145, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622147, 3] ssh_channel_read_timeout:  Read (6) buffered : 2004 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622149, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622151, 3] ssh_channel_read_timeout:  Read (6) buffered : 1998 bytes. Window: 2094950
2024-09-06 11:14:12,612 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622152, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622154, 3] ssh_channel_read_timeout:  Read (6) buffered : 1992 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622156, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622157, 3] ssh_channel_read_timeout:  Read (6) buffered : 1986 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622159, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622161, 3] ssh_channel_read_timeout:  Read (6) buffered : 1980 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622164, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622166, 3] ssh_channel_read_timeout:  Read (6) buffered : 1974 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622169, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622172, 3] ssh_channel_read_timeout:  Read (6) buffered : 1968 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622174, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622175, 3] ssh_channel_read_timeout:  Read (6) buffered : 1962 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622177, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622179, 3] ssh_channel_read_timeout:  Read (6) buffered : 1956 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622181, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622182, 3] ssh_channel_read_timeout:  Read (6) buffered : 1950 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622184, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622186, 3] ssh_channel_read_timeout:  Read (6) buffered : 1944 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622188, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622190, 3] ssh_channel_read_timeout:  Read (6) buffered : 1938 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622192, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622193, 3] ssh_channel_read_timeout:  Read (6) buffered : 1932 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622195, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622197, 3] ssh_channel_read_timeout:  Read (6) buffered : 1926 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622198, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622200, 3] ssh_channel_read_timeout:  Read (6) buffered : 1920 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622202, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622203, 3] ssh_channel_read_timeout:  Read (6) buffered : 1914 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622205, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622207, 3] ssh_channel_read_timeout:  Read (6) buffered : 1908 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622209, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,613 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622210, 3] ssh_channel_read_timeout:  Read (6) buffered : 1902 bytes. Window: 2094950
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622214, 3] ssh_channel_read_timeout:  Read (5) buffered : 1896 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "40[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]8[INF]: NP: Generated new event (netconf-session-start).[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "5e[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]V[INF]: LN: Session 2: Received an SSH message "request-channel" of subtype "unknown".[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.622414, 3] ssh_message_reply_default:  Don't know what to default reply to -671088592 type[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "76[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]n[2024/09/06 09:14:12.622428, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.622431, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.622434, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622438, 3] ssh_channel_read_timeout:  Read (6) buffered : 1891 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622439, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622442, 3] ssh_channel_read_timeout:  Read (6) buffered : 1885 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622444, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,613 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622445, 3] ssh_channel_read_timeout:  Read (6) buffered : 1879 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622447, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622449, 3] ssh_channel_read_timeout:  Read (6) buffered : 1873 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622450, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622452, 3] ssh_channel_read_timeout:  Read (6) buffered : 1867 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622453, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622455, 3] ssh_channel_read_timeout:  Read (6) buffered : 1861 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622457, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622458, 3] ssh_channel_read_timeout:  Read (6) buffered : 1855 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622460, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622463, 3] ssh_channel_read_timeout:  Read (6) buffered : 1849 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622465, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622466, 3] ssh_channel_read_timeout:  Read (6) buffered : 1843 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622468, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622470, 3] ssh_channel_read_timeout:  Read (6) buffered : 1837 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622471, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622473, 3] ssh_channel_read_timeout:  Read (6) buffered : 1831 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622474, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622476, 3] ssh_channel_read_timeout:  Read (6) buffered : 1825 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622478, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622479, 3] ssh_channel_read_timeout:  Read (6) buffered : 1819 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622481, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,614 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622483, 3] ssh_channel_read_timeout:  Read (6) buffered : 1813 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622485, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622486, 3] ssh_channel_read_timeout:  Read (6) buffered : 1807 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622488, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622490, 3] ssh_channel_read_timeout:  Read (6) buffered : 1801 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622493, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622495, 3] ssh_channel_read_timeout:  Read (6) buffered : 1795 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622498, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622500, 3] ssh_channel_read_timeout:  Read (6) buffered : 1789 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622503, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622506, 3] ssh_channel_read_timeout:  Read (6) buffered : 1783 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622508, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622510, 3] ssh_channel_read_timeout:  Read (6) buffered : 1777 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622512, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622513, 3] ssh_channel_read_timeout:  Read (6) buffered : 1771 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622515, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622517, 3] ssh_channel_read_timeout:  Read (6) buffered : 1765 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622518, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622520, 3] ssh_channel_read_timeout:  Read (6) buffered : 1759 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,615 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622521, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622523, 3] ssh_channel_read_timeout:  Read (6) buffered : 1753 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622525, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622527, 3] ssh_channel_read_timeout:  Read (6) buffered : 1747 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622529, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622530, 3] ssh_channel_read_timeout:  Read (6) buffered : 1741 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622532, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622534, 3] ssh_channel_read_timeout:  Read (6) buffered : 1735 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622535, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622537, 3] ssh_channel_read_timeout:  Read (6) buffered : 1729 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,616 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622539, 3] grow_window:  growing window (ch"
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622212, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622214, 3] ssh_channel_read_timeout:  Read (5) buffered : 1896 bytes. Window: 2094950
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: NP: Generated new event (netconf-session-start).
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: LN: Session 2: Received an SSH message "request-channel" of subtype "unknown".
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622414, 3] ssh_message_reply_default:  Don't know what to default reply to -671088592 type
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622428, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 0
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622431, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622434, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,616 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622438, 3] ssh_channel_read_timeout:  Read (6) buffered : 1891 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622439, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622442, 3] ssh_channel_read_timeout:  Read (6) buffered : 1885 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622444, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622445, 3] ssh_channel_read_timeout:  Read (6) buffered : 1879 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622447, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622449, 3] ssh_channel_read_timeout:  Read (6) buffered : 1873 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622450, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622452, 3] ssh_channel_read_timeout:  Read (6) buffered : 1867 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622453, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622455, 3] ssh_channel_read_timeout:  Read (6) buffered : 1861 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622457, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622458, 3] ssh_channel_read_timeout:  Read (6) buffered : 1855 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622460, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622463, 3] ssh_channel_read_timeout:  Read (6) buffered : 1849 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622465, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622466, 3] ssh_channel_read_timeout:  Read (6) buffered : 1843 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622468, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622470, 3] ssh_channel_read_timeout:  Read (6) buffered : 1837 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622471, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622473, 3] ssh_channel_read_timeout:  Read (6) buffered : 1831 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622474, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622476, 3] ssh_channel_read_timeout:  Read (6) buffered : 1825 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622478, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622479, 3] ssh_channel_read_timeout:  Read (6) buffered : 1819 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622481, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622483, 3] ssh_channel_read_timeout:  Read (6) buffered : 1813 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622485, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622486, 3] ssh_channel_read_timeout:  Read (6) buffered : 1807 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622488, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622490, 3] ssh_channel_read_timeout:  Read (6) buffered : 1801 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622493, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622495, 3] ssh_channel_read_timeout:  Read (6) buffered : 1795 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622498, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622500, 3] ssh_channel_read_timeout:  Read (6) buffered : 1789 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622503, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622506, 3] ssh_channel_read_timeout:  Read (6) buffered : 1783 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622508, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622510, 3] ssh_channel_read_timeout:  Read (6) buffered : 1777 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622512, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622513, 3] ssh_channel_read_timeout:  Read (6) buffered : 1771 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622515, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622517, 3] ssh_channel_read_timeout:  Read (6) buffered : 1765 bytes. Window: 2094950
2024-09-06 11:14:12,617 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622518, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622520, 3] ssh_channel_read_timeout:  Read (6) buffered : 1759 bytes. Window: 2094950
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622521, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622523, 3] ssh_channel_read_timeout:  Read (6) buffered : 1753 bytes. Window: 2094950
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622525, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622527, 3] ssh_channel_read_timeout:  Read (6) buffered : 1747 bytes. Window: 2094950
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622529, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622530, 3] ssh_channel_read_timeout:  Read (6) buffered : 1741 bytes. Window: 2094950
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622532, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622534, 3] ssh_channel_read_timeout:  Read (6) buffered : 1735 bytes. Window: 2094950
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622535, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,618 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622537, 3] ssh_channel_read_timeout:  Read (6) buffered : 1729 bytes. Window: 2094950
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "annel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622540, 3] ssh_channel_read_timeout:  Read (6) buffered : 1723 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622542, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622544, 3] ssh_channel_read_timeout:  Read (6) buffered : 1717 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622546, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622547, 3] ssh_channel_read_timeout:  Read (6) buffered : 1711 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622549, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622550, 3] ssh_channel_read_timeout:  Read (6) buffered : 1705 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622552, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622554, 3] ssh_channel_read_timeout:  Read (6) buffered : 1699 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622555, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622557, 3] ssh_channel_read_timeout:  Read (6) buffered : 1693 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622561, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622563, 3] ssh_channel_read_timeout:  Read (6) buffered : 1687 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622566, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,618 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622568, 3] ssh_channel_read_timeout:  Read (6) buffered : 1681 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622571, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622574, 3] ssh_channel_read_timeout:  Read (6) buffered : 1675 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622576, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622579, 3] ssh_channel_read_timeout:  Read (6) buffered : 1669 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622582, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622584, 3] ssh_channel_read_timeout:  Read (6) buffered : 1663 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622586, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622588, 3] ssh_channel_read_timeout:  Read (6) buffered : 1657 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622590, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622592, 3] ssh_channel_read_timeout:  Read (6) buffered : 1651 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622593, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622595, 3] ssh_channel_read_timeout:  Read (6) buffered : 1645 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622597, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622599, 3] ssh_channel_read_timeout:  Read (6) buffered : 1639 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622600, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622602, 3] ssh_channel_read_timeout:  Read (6) buffered : 1633 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622604, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622606, 3] ssh_channel_read_timeout:  Read (6) buffered : 1627 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622607, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,619 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622609, 3] ssh_channel_read_timeout:  Read (6) buffered : 1621 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622611, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622612, 3] ssh_channel_read_timeout:  Read (6) buffered : 1615 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622614, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622616, 3] ssh_channel_read_timeout:  Read (6) buffered : 1609 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622617, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622619, 3] ssh_channel_read_timeout:  Read (6) buffered : 1603 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622621, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622622, 3] ssh_channel_read_timeout:  Read (6) buffered : 1597 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622624, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622626, 3] ssh_channel_read_timeout:  Read (6) buffered : 1591 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622628, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622629, 3] ssh_channel_read_timeout:  Read (6) buffered : 1585 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622631, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622633, 3] ssh_channel_read_timeout:  Read (6) buffered : 1579 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622636, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622638, 3] ssh_channel_read_timeout:  Read (6) buffered : 1573 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622641, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622643, 3] ssh_channel_read_timeout:  Read (6) buffered : 1567 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622646, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,620 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622649, 3] ssh_channel_read_timeout:  Read (6) buffered : 1561 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622651, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622654, 3] ssh_channel_read_timeout:  Read (6) buffered : 1555 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622655, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622657, 3] ssh_channel_read_timeout:  Read (6) buffered : 1549 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622659, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622661, 3] ssh_channel_read_timeout:  Read (6) buffered : 1543 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622662, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,621 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622664, 3] ssh_channel_read_timeout:  Read (6) buffered : 1537 bytes"
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622539, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622540, 3] ssh_channel_read_timeout:  Read (6) buffered : 1723 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622542, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622544, 3] ssh_channel_read_timeout:  Read (6) buffered : 1717 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622546, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622547, 3] ssh_channel_read_timeout:  Read (6) buffered : 1711 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622549, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622550, 3] ssh_channel_read_timeout:  Read (6) buffered : 1705 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622552, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622554, 3] ssh_channel_read_timeout:  Read (6) buffered : 1699 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622555, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622557, 3] ssh_channel_read_timeout:  Read (6) buffered : 1693 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622561, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622563, 3] ssh_channel_read_timeout:  Read (6) buffered : 1687 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622566, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622568, 3] ssh_channel_read_timeout:  Read (6) buffered : 1681 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622571, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622574, 3] ssh_channel_read_timeout:  Read (6) buffered : 1675 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622576, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622579, 3] ssh_channel_read_timeout:  Read (6) buffered : 1669 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622582, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622584, 3] ssh_channel_read_timeout:  Read (6) buffered : 1663 bytes. Window: 2094950
2024-09-06 11:14:12,621 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622586, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622588, 3] ssh_channel_read_timeout:  Read (6) buffered : 1657 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622590, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622592, 3] ssh_channel_read_timeout:  Read (6) buffered : 1651 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622593, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622595, 3] ssh_channel_read_timeout:  Read (6) buffered : 1645 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622597, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622599, 3] ssh_channel_read_timeout:  Read (6) buffered : 1639 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622600, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622602, 3] ssh_channel_read_timeout:  Read (6) buffered : 1633 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622604, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622606, 3] ssh_channel_read_timeout:  Read (6) buffered : 1627 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622607, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622609, 3] ssh_channel_read_timeout:  Read (6) buffered : 1621 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622611, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622612, 3] ssh_channel_read_timeout:  Read (6) buffered : 1615 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622614, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622616, 3] ssh_channel_read_timeout:  Read (6) buffered : 1609 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622617, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622619, 3] ssh_channel_read_timeout:  Read (6) buffered : 1603 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622621, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622622, 3] ssh_channel_read_timeout:  Read (6) buffered : 1597 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622624, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622626, 3] ssh_channel_read_timeout:  Read (6) buffered : 1591 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622628, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622629, 3] ssh_channel_read_timeout:  Read (6) buffered : 1585 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622631, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622633, 3] ssh_channel_read_timeout:  Read (6) buffered : 1579 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622636, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622638, 3] ssh_channel_read_timeout:  Read (6) buffered : 1573 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622641, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622643, 3] ssh_channel_read_timeout:  Read (6) buffered : 1567 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622646, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622649, 3] ssh_channel_read_timeout:  Read (6) buffered : 1561 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622651, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622654, 3] ssh_channel_read_timeout:  Read (6) buffered : 1555 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622655, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622657, 3] ssh_channel_read_timeout:  Read (6) buffered : 1549 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622659, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622661, 3] ssh_channel_read_timeout:  Read (6) buffered : 1543 bytes. Window: 2094950
2024-09-06 11:14:12,622 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622662, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,622 (Wire.java:92) DEBUG : http-outgoing-3 << ". Window: 2094950[\n]"
2024-09-06 11:14:12,622 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,622 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,622 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622666, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,622 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622667, 3] ssh_channel_read_timeout:  Read (6) buffered : 1531 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622669, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622671, 3] ssh_channel_read_timeout:  Read (6) buffered : 1525 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622672, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622674, 3] ssh_channel_read_timeout:  Read (6) buffered : 1519 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622676, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622678, 3] ssh_channel_read_timeout:  Read (6) buffered : 1513 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622679, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622681, 3] ssh_channel_read_timeout:  Read (6) buffered : 1507 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622683, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622684, 3] ssh_channel_read_timeout:  Read (6) buffered : 1501 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622686, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622688, 3] ssh_channel_read_timeout:  Read (6) buffered : 1495 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622690, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622691, 3] ssh_channel_read_timeout:  Read (6) buffered : 1489 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622693, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622695, 3] ssh_channel_read_timeout:  Read (6) buffered : 1483 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622696, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622698, 3] ssh_channel_read_timeout:  Read (6) buffered : 1477 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622700, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622702, 3] ssh_channel_read_timeout:  Read (6) buffered : 1471 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622703, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622705, 3] ssh_channel_read_timeout:  Read (6) buffered : 1465 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,623 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622708, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622710, 3] ssh_channel_read_timeout:  Read (6) buffered : 1459 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622713, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622716, 3] ssh_channel_read_timeout:  Read (6) buffered : 1453 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622718, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622721, 3] ssh_channel_read_timeout:  Read (6) buffered : 1447 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622724, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622725, 3] ssh_channel_read_timeout:  Read (6) buffered : 1441 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622727, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622729, 3] ssh_channel_read_timeout:  Read (6) buffered : 1435 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622730, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622732, 3] ssh_channel_read_timeout:  Read (6) buffered : 1429 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622734, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622735, 3] ssh_channel_read_timeout:  Read (6) buffered : 1423 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622737, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622739, 3] ssh_channel_read_timeout:  Read (6) buffered : 1417 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622741, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622742, 3] ssh_channel_read_timeout:  Read (6) buffered : 1411 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622744, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622746, 3] ssh_channel_read_timeout:  Read (6) buffered : 1405 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622747, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622749, 3] ssh_channel_read_timeout:  Read (6) buffered : 1399 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622751, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622752, 3] ssh_channel_read_timeout:  Read (6) buffered : 1393 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,624 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622754, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622755, 3] ssh_channel_read_timeout:  Read (6) buffered : 1387 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622757, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622759, 3] ssh_channel_read_timeout:  Read (6) buffered : 1381 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622761, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622763, 3] ssh_channel_read_timeout:  Read (6) buffered : 1375 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622764, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622767, 3] ssh_channel_read_timeout:  Read (6) buffered : 1369 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622769, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622770, 3] ssh_channel_read_timeout:  Read (6) buffered : 1363 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622772, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622774, 3] ssh_channel_read_timeout:  Read (6) buffered : 1357 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622775, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622777, 3] ssh_channel_read_timeout:  Read (6) buffered : 1351 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622778, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,625 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2]"
2024-09-06 11:14:12,625 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622664, 3] ssh_channel_read_timeout:  Read (6) buffered : 1537 bytes. Window: 2094950
2024-09-06 11:14:12,625 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622666, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,625 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622667, 3] ssh_channel_read_timeout:  Read (6) buffered : 1531 bytes. Window: 2094950
2024-09-06 11:14:12,625 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622669, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,625 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622671, 3] ssh_channel_read_timeout:  Read (6) buffered : 1525 bytes. Window: 2094950
2024-09-06 11:14:12,625 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622672, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622674, 3] ssh_channel_read_timeout:  Read (6) buffered : 1519 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622676, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622678, 3] ssh_channel_read_timeout:  Read (6) buffered : 1513 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622679, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622681, 3] ssh_channel_read_timeout:  Read (6) buffered : 1507 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622683, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622684, 3] ssh_channel_read_timeout:  Read (6) buffered : 1501 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622686, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622688, 3] ssh_channel_read_timeout:  Read (6) buffered : 1495 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622690, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622691, 3] ssh_channel_read_timeout:  Read (6) buffered : 1489 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622693, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622695, 3] ssh_channel_read_timeout:  Read (6) buffered : 1483 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622696, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622698, 3] ssh_channel_read_timeout:  Read (6) buffered : 1477 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622700, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622702, 3] ssh_channel_read_timeout:  Read (6) buffered : 1471 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622703, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622705, 3] ssh_channel_read_timeout:  Read (6) buffered : 1465 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622708, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622710, 3] ssh_channel_read_timeout:  Read (6) buffered : 1459 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622713, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622716, 3] ssh_channel_read_timeout:  Read (6) buffered : 1453 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622718, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622721, 3] ssh_channel_read_timeout:  Read (6) buffered : 1447 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622724, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622725, 3] ssh_channel_read_timeout:  Read (6) buffered : 1441 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622727, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622729, 3] ssh_channel_read_timeout:  Read (6) buffered : 1435 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622730, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622732, 3] ssh_channel_read_timeout:  Read (6) buffered : 1429 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622734, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622735, 3] ssh_channel_read_timeout:  Read (6) buffered : 1423 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622737, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622739, 3] ssh_channel_read_timeout:  Read (6) buffered : 1417 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622741, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622742, 3] ssh_channel_read_timeout:  Read (6) buffered : 1411 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622744, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622746, 3] ssh_channel_read_timeout:  Read (6) buffered : 1405 bytes. Window: 2094950
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622747, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,626 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622749, 3] ssh_channel_read_timeout:  Read (6) buffered : 1399 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622751, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622752, 3] ssh_channel_read_timeout:  Read (6) buffered : 1393 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622754, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622755, 3] ssh_channel_read_timeout:  Read (6) buffered : 1387 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622757, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622759, 3] ssh_channel_read_timeout:  Read (6) buffered : 1381 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622761, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622763, 3] ssh_channel_read_timeout:  Read (6) buffered : 1375 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622764, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622767, 3] ssh_channel_read_timeout:  Read (6) buffered : 1369 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622769, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622770, 3] ssh_channel_read_timeout:  Read (6) buffered : 1363 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622772, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622774, 3] ssh_channel_read_timeout:  Read (6) buffered : 1357 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622775, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622777, 3] ssh_channel_read_timeout:  Read (6) buffered : 1351 bytes. Window: 2094950
2024-09-06 11:14:12,627 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622778, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622781, 3] ssh_channel_read_timeout:  Read (6) buffered : 1345 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622783, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622786, 3] ssh_channel_read_timeout:  Read (6) buffered : 1339 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622788, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622791, 3] ssh_channel_read_timeout:  Read (6) buffered : 1333 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622794, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622797, 3] ssh_channel_read_timeout:  Read (6) buffered : 1327 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622799, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622801, 3] ssh_channel_read_timeout:  Read (6) buffered : 1321 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622803, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,627 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622804, 3] ssh_channel_read_timeout:  Read (6) buffered : 1315 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622806, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622808, 3] ssh_channel_read_timeout:  Read (6) buffered : 1309 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622809, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622811, 3] ssh_channel_read_timeout:  Read (6) buffered : 1303 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622812, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622814, 3] ssh_channel_read_timeout:  Read (6) buffered : 1297 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622816, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622818, 3] ssh_channel_read_timeout:  Read (6) buffered : 1291 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622820, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622822, 3] ssh_channel_read_timeout:  Read (6) buffered : 1285 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622824, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622825, 3] ssh_channel_read_timeout:  Read (6) buffered : 1279 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622827, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622829, 3] ssh_channel_read_timeout:  Read (6) buffered : 1273 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622830, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622832, 3] ssh_channel_read_timeout:  Read (6) buffered : 1267 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622834, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622836, 3] ssh_channel_read_timeout:  Read (6) buffered : 1261 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622838, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622840, 3] ssh_channel_read_timeout:  Read (6) buffered : 1255 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622842, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622844, 3] ssh_channel_read_timeout:  Read (6) buffered : 1249 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622845, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,628 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622847, 3] ssh_channel_read_timeout:  Read (6) buffered : 1243 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622848, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622852, 3] ssh_channel_read_timeout:  Read (6) buffered : 1237 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622854, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622857, 3] ssh_channel_read_timeout:  Read (6) buffered : 1231 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622859, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622862, 3] ssh_channel_read_timeout:  Read (6) buffered : 1225 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622865, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622867, 3] ssh_channel_read_timeout:  Read (6) buffered : 1219 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622869, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622871, 3] ssh_channel_read_timeout:  Read (6) buffered : 1213 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622873, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622875, 3] ssh_channel_read_timeout:  Read (6) buffered : 1207 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622877, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622878, 3] ssh_channel_read_timeout:  Read (6) buffered : 1201 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622880, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622882, 3] ssh_channel_read_timeout:  Read (6) buffered : 1195 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622883, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622885, 3] ssh_channel_read_timeout:  Read (6) buffered : 1189 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622887, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622888, 3] ssh_channel_read_timeout:  Read (6) buffered : 1183 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622890, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622892, 3] ssh_channel_read_timeout:  Read (6) buffered : 1177 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,629 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622894, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622895, 3] ssh_channel_read_timeout:  Read (6) buffered : 1171 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622897, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622899, 3] ssh_channel_read_timeout:  Read (6) buffered : 1165 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622900, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622902, 3] ssh_channel_read_timeout:  Read (6) buffered : 1159 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,630 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622903, 3] gro"
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622781, 3] ssh_channel_read_timeout:  Read (6) buffered : 1345 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622783, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622786, 3] ssh_channel_read_timeout:  Read (6) buffered : 1339 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622788, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622791, 3] ssh_channel_read_timeout:  Read (6) buffered : 1333 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622794, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622797, 3] ssh_channel_read_timeout:  Read (6) buffered : 1327 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622799, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622801, 3] ssh_channel_read_timeout:  Read (6) buffered : 1321 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622803, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622804, 3] ssh_channel_read_timeout:  Read (6) buffered : 1315 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622806, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622808, 3] ssh_channel_read_timeout:  Read (6) buffered : 1309 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622809, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622811, 3] ssh_channel_read_timeout:  Read (6) buffered : 1303 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622812, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622814, 3] ssh_channel_read_timeout:  Read (6) buffered : 1297 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622816, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622818, 3] ssh_channel_read_timeout:  Read (6) buffered : 1291 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622820, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622822, 3] ssh_channel_read_timeout:  Read (6) buffered : 1285 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622824, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622825, 3] ssh_channel_read_timeout:  Read (6) buffered : 1279 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622827, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622829, 3] ssh_channel_read_timeout:  Read (6) buffered : 1273 bytes. Window: 2094950
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622830, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,630 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622832, 3] ssh_channel_read_timeout:  Read (6) buffered : 1267 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622834, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622836, 3] ssh_channel_read_timeout:  Read (6) buffered : 1261 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622838, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622840, 3] ssh_channel_read_timeout:  Read (6) buffered : 1255 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622842, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622844, 3] ssh_channel_read_timeout:  Read (6) buffered : 1249 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622845, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622847, 3] ssh_channel_read_timeout:  Read (6) buffered : 1243 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622848, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622852, 3] ssh_channel_read_timeout:  Read (6) buffered : 1237 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622854, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622857, 3] ssh_channel_read_timeout:  Read (6) buffered : 1231 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622859, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622862, 3] ssh_channel_read_timeout:  Read (6) buffered : 1225 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622865, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622867, 3] ssh_channel_read_timeout:  Read (6) buffered : 1219 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622869, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622871, 3] ssh_channel_read_timeout:  Read (6) buffered : 1213 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622873, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622875, 3] ssh_channel_read_timeout:  Read (6) buffered : 1207 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622877, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622878, 3] ssh_channel_read_timeout:  Read (6) buffered : 1201 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622880, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622882, 3] ssh_channel_read_timeout:  Read (6) buffered : 1195 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622883, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622885, 3] ssh_channel_read_timeout:  Read (6) buffered : 1189 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622887, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622888, 3] ssh_channel_read_timeout:  Read (6) buffered : 1183 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622890, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622892, 3] ssh_channel_read_timeout:  Read (6) buffered : 1177 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622894, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622895, 3] ssh_channel_read_timeout:  Read (6) buffered : 1171 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622897, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622899, 3] ssh_channel_read_timeout:  Read (6) buffered : 1165 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622900, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,631 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622902, 3] ssh_channel_read_timeout:  Read (6) buffered : 1159 bytes. Window: 2094950
2024-09-06 11:14:12,631 (Wire.java:92) DEBUG : http-outgoing-3 << "w_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,631 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622905, 3] ssh_channel_read_timeout:  Read (6) buffered : 1153 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622907, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622909, 3] ssh_channel_read_timeout:  Read (6) buffered : 1147 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622910, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622912, 3] ssh_channel_read_timeout:  Read (6) buffered : 1141 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622914, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622915, 3] ssh_channel_read_timeout:  Read (6) buffered : 1135 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622917, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622919, 3] ssh_channel_read_timeout:  Read (6) buffered : 1129 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622921, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622924, 3] ssh_channel_read_timeout:  Read (6) buffered : 1123 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622926, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622929, 3] ssh_channel_read_timeout:  Read (6) buffered : 1117 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622932, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622935, 3] ssh_channel_read_timeout:  Read (6) buffered : 1111 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622937, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622939, 3] ssh_channel_read_timeout:  Read (6) buffered : 1105 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622941, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622943, 3] ssh_channel_read_timeout:  Read (6) buffered : 1099 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622944, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622946, 3] ssh_channel_read_timeout:  Read (6) buffered : 1093 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,632 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622948, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622950, 3] ssh_channel_read_timeout:  Read (6) buffered : 1087 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622951, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622953, 3] ssh_channel_read_timeout:  Read (6) buffered : 1081 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622954, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622956, 3] ssh_channel_read_timeout:  Read (6) buffered : 1075 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622958, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622960, 3] ssh_channel_read_timeout:  Read (6) buffered : 1069 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622961, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622963, 3] ssh_channel_read_timeout:  Read (6) buffered : 1063 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622965, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622966, 3] ssh_channel_read_timeout:  Read (6) buffered : 1057 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622968, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622970, 3] ssh_channel_read_timeout:  Read (6) buffered : 1051 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622971, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622973, 3] ssh_channel_read_timeout:  Read (6) buffered : 1045 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622975, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622976, 3] ssh_channel_read_timeout:  Read (6) buffered : 1039 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622978, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622979, 3] ssh_channel_read_timeout:  Read (6) buffered : 1033 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622981, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,633 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622983, 3] ssh_channel_read_timeout:  Read (6) buffered : 1027 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622985, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622986, 3] ssh_channel_read_timeout:  Read (6) buffered : 1021 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622988, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622990, 3] ssh_channel_read_timeout:  Read (6) buffered : 1015 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622992, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.622995, 3] ssh_channel_read_timeout:  Read (6) buffered : 1009 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.622997, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.623000, 3] ssh_channel_read_timeout:  Read (6) buffered : 1003 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623002, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623006, 3] ssh_channel_read_timeout:  Read (6) buffered : 997 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623008, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623010, 3] ssh_channel_read_timeout:  Read (6) buffered : 991 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623012, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623013, 3] ssh_channel_read_timeout:  Read (6) buffered : 985 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623015, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623017, 3] ssh_channel_read_timeout:  Read (6) buffered : 979 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623019, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,634 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,635 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,635 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623033, 3] ssh_channel_read_timeout:  Read (6) buffered : 973 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,635 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,635 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,635 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623037, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,635 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,635 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,635 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623039, 3] ssh_channel_read_timeout:  Read ("
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622903, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622905, 3] ssh_channel_read_timeout:  Read (6) buffered : 1153 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622907, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622909, 3] ssh_channel_read_timeout:  Read (6) buffered : 1147 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622910, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622912, 3] ssh_channel_read_timeout:  Read (6) buffered : 1141 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622914, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622915, 3] ssh_channel_read_timeout:  Read (6) buffered : 1135 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622917, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622919, 3] ssh_channel_read_timeout:  Read (6) buffered : 1129 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622921, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622924, 3] ssh_channel_read_timeout:  Read (6) buffered : 1123 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622926, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622929, 3] ssh_channel_read_timeout:  Read (6) buffered : 1117 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622932, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622935, 3] ssh_channel_read_timeout:  Read (6) buffered : 1111 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622937, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622939, 3] ssh_channel_read_timeout:  Read (6) buffered : 1105 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622941, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622943, 3] ssh_channel_read_timeout:  Read (6) buffered : 1099 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622944, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622946, 3] ssh_channel_read_timeout:  Read (6) buffered : 1093 bytes. Window: 2094950
2024-09-06 11:14:12,635 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622948, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622950, 3] ssh_channel_read_timeout:  Read (6) buffered : 1087 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622951, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622953, 3] ssh_channel_read_timeout:  Read (6) buffered : 1081 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622954, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622956, 3] ssh_channel_read_timeout:  Read (6) buffered : 1075 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622958, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622960, 3] ssh_channel_read_timeout:  Read (6) buffered : 1069 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622961, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622963, 3] ssh_channel_read_timeout:  Read (6) buffered : 1063 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622965, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622966, 3] ssh_channel_read_timeout:  Read (6) buffered : 1057 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622968, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622970, 3] ssh_channel_read_timeout:  Read (6) buffered : 1051 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622971, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622973, 3] ssh_channel_read_timeout:  Read (6) buffered : 1045 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622975, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622976, 3] ssh_channel_read_timeout:  Read (6) buffered : 1039 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622978, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622979, 3] ssh_channel_read_timeout:  Read (6) buffered : 1033 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622981, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622983, 3] ssh_channel_read_timeout:  Read (6) buffered : 1027 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622985, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622986, 3] ssh_channel_read_timeout:  Read (6) buffered : 1021 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622988, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622990, 3] ssh_channel_read_timeout:  Read (6) buffered : 1015 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622992, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622995, 3] ssh_channel_read_timeout:  Read (6) buffered : 1009 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.622997, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623000, 3] ssh_channel_read_timeout:  Read (6) buffered : 1003 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623002, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623006, 3] ssh_channel_read_timeout:  Read (6) buffered : 997 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623008, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623010, 3] ssh_channel_read_timeout:  Read (6) buffered : 991 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623012, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623013, 3] ssh_channel_read_timeout:  Read (6) buffered : 985 bytes. Window: 2094950
2024-09-06 11:14:12,636 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623015, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,637 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623017, 3] ssh_channel_read_timeout:  Read (6) buffered : 979 bytes. Window: 2094950
2024-09-06 11:14:12,637 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623019, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,637 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623033, 3] ssh_channel_read_timeout:  Read (6) buffered : 973 bytes. Window: 2094950
2024-09-06 11:14:12,637 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623037, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "6) buffered : 967 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623041, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623043, 3] ssh_channel_read_timeout:  Read (6) buffered : 961 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623045, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623047, 3] ssh_channel_read_timeout:  Read (6) buffered : 955 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623049, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,637 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623051, 3] ssh_channel_read_timeout:  Read (6) buffered : 949 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623053, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623054, 3] ssh_channel_read_timeout:  Read (6) buffered : 943 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623056, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623058, 3] ssh_channel_read_timeout:  Read (6) buffered : 937 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623060, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623061, 3] ssh_channel_read_timeout:  Read (6) buffered : 931 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623063, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623065, 3] ssh_channel_read_timeout:  Read (6) buffered : 925 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623067, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623069, 3] ssh_channel_read_timeout:  Read (6) buffered : 919 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623072, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623074, 3] ssh_channel_read_timeout:  Read (6) buffered : 913 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623077, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623079, 3] ssh_channel_read_timeout:  Read (6) buffered : 907 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623082, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,638 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623085, 3] ssh_channel_read_timeout:  Read (6) buffered : 901 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623087, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623089, 3] ssh_channel_read_timeout:  Read (6) buffered : 895 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623090, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623092, 3] ssh_channel_read_timeout:  Read (6) buffered : 889 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623094, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623096, 3] ssh_channel_read_timeout:  Read (6) buffered : 883 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623097, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623099, 3] ssh_channel_read_timeout:  Read (6) buffered : 877 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623101, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623103, 3] ssh_channel_read_timeout:  Read (6) buffered : 871 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623104, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623106, 3] ssh_channel_read_timeout:  Read (6) buffered : 865 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623108, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623109, 3] ssh_channel_read_timeout:  Read (6) buffered : 859 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623111, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623113, 3] ssh_channel_read_timeout:  Read (6) buffered : 853 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,639 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623114, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623116, 3] ssh_channel_read_timeout:  Read (6) buffered : 847 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623118, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623120, 3] ssh_channel_read_timeout:  Read (6) buffered : 841 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623121, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623123, 3] ssh_channel_read_timeout:  Read (6) buffered : 835 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623125, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623126, 3] ssh_channel_read_timeout:  Read (6) buffered : 829 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623128, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623130, 3] ssh_channel_read_timeout:  Read (6) buffered : 823 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623131, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623133, 3] ssh_channel_read_timeout:  Read (6) buffered : 817 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623134, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623136, 3] ssh_channel_read_timeout:  Read (6) buffered : 811 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623138, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623139, 3] ssh_channel_read_timeout:  Read (6) buffered : 805 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623141, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623144, 3] ssh_channel_read_timeout:  Read (6) buffered : 799 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,640 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623147, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623149, 3] ssh_channel_read_timeout:  Read (6) buffered : 793 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623152, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623154, 3] ssh_channel_read_timeout:  Read (6) buffered : 787 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623157, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623160, 3] ssh_channel_read_timeout:  Read (6) buffered : 781 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623162, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,641 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j["
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623039, 3] ssh_channel_read_timeout:  Read (6) buffered : 967 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623041, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623043, 3] ssh_channel_read_timeout:  Read (6) buffered : 961 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623045, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623047, 3] ssh_channel_read_timeout:  Read (6) buffered : 955 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623049, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623051, 3] ssh_channel_read_timeout:  Read (6) buffered : 949 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623053, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623054, 3] ssh_channel_read_timeout:  Read (6) buffered : 943 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623056, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623058, 3] ssh_channel_read_timeout:  Read (6) buffered : 937 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623060, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623061, 3] ssh_channel_read_timeout:  Read (6) buffered : 931 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623063, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623065, 3] ssh_channel_read_timeout:  Read (6) buffered : 925 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623067, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623069, 3] ssh_channel_read_timeout:  Read (6) buffered : 919 bytes. Window: 2094950
2024-09-06 11:14:12,641 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623072, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623074, 3] ssh_channel_read_timeout:  Read (6) buffered : 913 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623077, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623079, 3] ssh_channel_read_timeout:  Read (6) buffered : 907 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623082, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623085, 3] ssh_channel_read_timeout:  Read (6) buffered : 901 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623087, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623089, 3] ssh_channel_read_timeout:  Read (6) buffered : 895 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623090, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623092, 3] ssh_channel_read_timeout:  Read (6) buffered : 889 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623094, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623096, 3] ssh_channel_read_timeout:  Read (6) buffered : 883 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623097, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623099, 3] ssh_channel_read_timeout:  Read (6) buffered : 877 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623101, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623103, 3] ssh_channel_read_timeout:  Read (6) buffered : 871 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623104, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623106, 3] ssh_channel_read_timeout:  Read (6) buffered : 865 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623108, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623109, 3] ssh_channel_read_timeout:  Read (6) buffered : 859 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623111, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623113, 3] ssh_channel_read_timeout:  Read (6) buffered : 853 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623114, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623116, 3] ssh_channel_read_timeout:  Read (6) buffered : 847 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623118, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623120, 3] ssh_channel_read_timeout:  Read (6) buffered : 841 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623121, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623123, 3] ssh_channel_read_timeout:  Read (6) buffered : 835 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623125, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623126, 3] ssh_channel_read_timeout:  Read (6) buffered : 829 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623128, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623130, 3] ssh_channel_read_timeout:  Read (6) buffered : 823 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623131, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623133, 3] ssh_channel_read_timeout:  Read (6) buffered : 817 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623134, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623136, 3] ssh_channel_read_timeout:  Read (6) buffered : 811 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623138, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623139, 3] ssh_channel_read_timeout:  Read (6) buffered : 805 bytes. Window: 2094950
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623141, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,642 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623144, 3] ssh_channel_read_timeout:  Read (6) buffered : 799 bytes. Window: 2094950
2024-09-06 11:14:12,643 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623147, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,643 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623149, 3] ssh_channel_read_timeout:  Read (6) buffered : 793 bytes. Window: 2094950
2024-09-06 11:14:12,643 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623152, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,643 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623154, 3] ssh_channel_read_timeout:  Read (6) buffered : 787 bytes. Window: 2094950
2024-09-06 11:14:12,643 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623157, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,643 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623160, 3] ssh_channel_read_timeout:  Read (6) buffered : 781 bytes. Window: 2094950
2024-09-06 11:14:12,643 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623162, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "2024/09/06 09:14:12.623164, 3] ssh_channel_read_timeout:  Read (6) buffered : 775 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623166, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623167, 3] ssh_channel_read_timeout:  Read (6) buffered : 769 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623169, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623171, 3] ssh_channel_read_timeout:  Read (6) buffered : 763 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623173, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623175, 3] ssh_channel_read_timeout:  Read (6) buffered : 757 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623176, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623178, 3] ssh_channel_read_timeout:  Read (6) buffered : 751 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623180, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623181, 3] ssh_channel_read_timeout:  Read (6) buffered : 745 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623183, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623185, 3] ssh_channel_read_timeout:  Read (6) buffered : 739 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623186, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623188, 3] ssh_channel_read_timeout:  Read (6) buffered : 733 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623190, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,643 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623191, 3] ssh_channel_read_timeout:  Read (6) buffered : 727 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623193, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623195, 3] ssh_channel_read_timeout:  Read (6) buffered : 721 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623197, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623198, 3] ssh_channel_read_timeout:  Read (6) buffered : 715 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623200, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623202, 3] ssh_channel_read_timeout:  Read (6) buffered : 709 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623204, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623206, 3] ssh_channel_read_timeout:  Read (6) buffered : 703 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623207, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623209, 3] ssh_channel_read_timeout:  Read (6) buffered : 697 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623211, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623213, 3] ssh_channel_read_timeout:  Read (6) buffered : 691 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623218, 3] ssh_channel_read_timeout:  Read (6) buffered : 685 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623221, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623223, 3] ssh_channel_read_timeout:  Read (6) buffered : 679 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623226, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,644 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623229, 3] ssh_channel_read_timeout:  Read (6) buffered : 673 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623231, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623233, 3] ssh_channel_read_timeout:  Read (6) buffered : 667 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623235, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623237, 3] ssh_channel_read_timeout:  Read (6) buffered : 661 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623239, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623240, 3] ssh_channel_read_timeout:  Read (6) buffered : 655 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623242, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623244, 3] ssh_channel_read_timeout:  Read (6) buffered : 649 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623246, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623248, 3] ssh_channel_read_timeout:  Read (6) buffered : 643 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623250, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623252, 3] ssh_channel_read_timeout:  Read (6) buffered : 637 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623253, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623255, 3] ssh_channel_read_timeout:  Read (6) buffered : 631 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623257, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623259, 3] ssh_channel_read_timeout:  Read (6) buffered : 625 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623261, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,645 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623263, 3] ssh_channel_read_timeout:  Read (6) buffered : 619 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623264, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623266, 3] ssh_channel_read_timeout:  Read (6) buffered : 613 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623268, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623270, 3] ssh_channel_read_timeout:  Read (6) buffered : 607 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623271, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623273, 3] ssh_channel_read_timeout:  Read (6) buffered : 601 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623274, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623276, 3] ssh_channel_read_timeout:  Read (6) buffered : 595 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,646 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,647 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,647 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623278, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,647 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,647 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,647 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.623279, 3] ssh_channel_read_timeout:  Read (6) buffered : 589 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,647 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,647 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,647 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.623281, 3] grow_window:  growing window (channel 43:10"
2024-09-06 11:14:12,647 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623164, 3] ssh_channel_read_timeout:  Read (6) buffered : 775 bytes. Window: 2094950
2024-09-06 11:14:12,647 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623166, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,647 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623167, 3] ssh_channel_read_timeout:  Read (6) buffered : 769 bytes. Window: 2094950
2024-09-06 11:14:12,647 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623169, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,647 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623171, 3] ssh_channel_read_timeout:  Read (6) buffered : 763 bytes. Window: 2094950
2024-09-06 11:14:12,647 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623173, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,647 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623175, 3] ssh_channel_read_timeout:  Read (6) buffered : 757 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623176, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623178, 3] ssh_channel_read_timeout:  Read (6) buffered : 751 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623180, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623181, 3] ssh_channel_read_timeout:  Read (6) buffered : 745 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623183, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623185, 3] ssh_channel_read_timeout:  Read (6) buffered : 739 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623186, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623188, 3] ssh_channel_read_timeout:  Read (6) buffered : 733 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623190, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623191, 3] ssh_channel_read_timeout:  Read (6) buffered : 727 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623193, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623195, 3] ssh_channel_read_timeout:  Read (6) buffered : 721 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623197, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623198, 3] ssh_channel_read_timeout:  Read (6) buffered : 715 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623200, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623202, 3] ssh_channel_read_timeout:  Read (6) buffered : 709 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623204, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623206, 3] ssh_channel_read_timeout:  Read (6) buffered : 703 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623207, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623209, 3] ssh_channel_read_timeout:  Read (6) buffered : 697 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623211, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623213, 3] ssh_channel_read_timeout:  Read (6) buffered : 691 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623218, 3] ssh_channel_read_timeout:  Read (6) buffered : 685 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623221, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623223, 3] ssh_channel_read_timeout:  Read (6) buffered : 679 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623226, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623229, 3] ssh_channel_read_timeout:  Read (6) buffered : 673 bytes. Window: 2094950
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623231, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,648 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623233, 3] ssh_channel_read_timeout:  Read (6) buffered : 667 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623235, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623237, 3] ssh_channel_read_timeout:  Read (6) buffered : 661 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623239, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623240, 3] ssh_channel_read_timeout:  Read (6) buffered : 655 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623242, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623244, 3] ssh_channel_read_timeout:  Read (6) buffered : 649 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623246, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623248, 3] ssh_channel_read_timeout:  Read (6) buffered : 643 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623250, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623252, 3] ssh_channel_read_timeout:  Read (6) buffered : 637 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623253, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623255, 3] ssh_channel_read_timeout:  Read (6) buffered : 631 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623257, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623259, 3] ssh_channel_read_timeout:  Read (6) buffered : 625 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623261, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623263, 3] ssh_channel_read_timeout:  Read (6) buffered : 619 bytes. Window: 2094950
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623264, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,649 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623266, 3] ssh_channel_read_timeout:  Read (6) buffered : 613 bytes. Window: 2094950
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623268, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623270, 3] ssh_channel_read_timeout:  Read (6) buffered : 607 bytes. Window: 2094950
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623271, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623273, 3] ssh_channel_read_timeout:  Read (6) buffered : 601 bytes. Window: 2094950
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623274, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623276, 3] ssh_channel_read_timeout:  Read (6) buffered : 595 bytes. Window: 2094950
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623278, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,650 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623279, 3] ssh_channel_read_timeout:  Read (6) buffered : 589 bytes. Window: 2094950
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "0) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624887, 3] ssh_channel_read_timeout:  Read (6) buffered : 583 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624898, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624900, 3] ssh_channel_read_timeout:  Read (6) buffered : 577 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624901, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624903, 3] ssh_channel_read_timeout:  Read (6) buffered : 571 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624905, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624907, 3] ssh_channel_read_timeout:  Read (6) buffered : 565 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624909, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624910, 3] ssh_channel_read_timeout:  Read (6) buffered : 559 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624912, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624914, 3] ssh_channel_read_timeout:  Read (6) buffered : 553 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624915, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624917, 3] ssh_channel_read_timeout:  Read (6) buffered : 547 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624919, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,650 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624921, 3] ssh_channel_read_timeout:  Read (6) buffered : 541 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624922, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624924, 3] ssh_channel_read_timeout:  Read (6) buffered : 535 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624926, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624928, 3] ssh_channel_read_timeout:  Read (6) buffered : 529 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624929, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624931, 3] ssh_channel_read_timeout:  Read (6) buffered : 523 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624933, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624934, 3] ssh_channel_read_timeout:  Read (6) buffered : 517 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624936, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624938, 3] ssh_channel_read_timeout:  Read (6) buffered : 511 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624939, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624941, 3] ssh_channel_read_timeout:  Read (6) buffered : 505 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624943, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624944, 3] ssh_channel_read_timeout:  Read (6) buffered : 499 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624946, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624947, 3] ssh_channel_read_timeout:  Read (6) buffered : 493 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,651 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624949, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624951, 3] ssh_channel_read_timeout:  Read (6) buffered : 487 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624953, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624955, 3] ssh_channel_read_timeout:  Read (6) buffered : 481 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624957, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624959, 3] ssh_channel_read_timeout:  Read (6) buffered : 475 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624961, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624962, 3] ssh_channel_read_timeout:  Read (6) buffered : 469 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624964, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624967, 3] ssh_channel_read_timeout:  Read (6) buffered : 463 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624968, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624970, 3] ssh_channel_read_timeout:  Read (6) buffered : 457 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624972, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624973, 3] ssh_channel_read_timeout:  Read (6) buffered : 451 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624975, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624977, 3] ssh_channel_read_timeout:  Read (6) buffered : 445 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624979, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624981, 3] ssh_channel_read_timeout:  Read (6) buffered : 439 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624982, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624984, 3] ssh_channel_read_timeout:  Read (6) buffered : 433 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,652 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624986, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624988, 3] ssh_channel_read_timeout:  Read (6) buffered : 427 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624990, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624992, 3] ssh_channel_read_timeout:  Read (6) buffered : 421 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624994, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.624996, 3] ssh_channel_read_timeout:  Read (6) buffered : 415 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.624998, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625000, 3] ssh_channel_read_timeout:  Read (6) buffered : 409 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625002, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625004, 3] ssh_channel_read_timeout:  Read (6) buffered : 403 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625006, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625008, 3] ssh_channel_read_timeout:  Read (6) buffered : 397 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,653 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06"
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.623281, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624887, 3] ssh_channel_read_timeout:  Read (6) buffered : 583 bytes. Window: 2094950
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624898, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624900, 3] ssh_channel_read_timeout:  Read (6) buffered : 577 bytes. Window: 2094950
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624901, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624903, 3] ssh_channel_read_timeout:  Read (6) buffered : 571 bytes. Window: 2094950
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624905, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624907, 3] ssh_channel_read_timeout:  Read (6) buffered : 565 bytes. Window: 2094950
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624909, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624910, 3] ssh_channel_read_timeout:  Read (6) buffered : 559 bytes. Window: 2094950
2024-09-06 11:14:12,654 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624912, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,655 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624914, 3] ssh_channel_read_timeout:  Read (6) buffered : 553 bytes. Window: 2094950
2024-09-06 11:14:12,655 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624915, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624917, 3] ssh_channel_read_timeout:  Read (6) buffered : 547 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624919, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624921, 3] ssh_channel_read_timeout:  Read (6) buffered : 541 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624922, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624924, 3] ssh_channel_read_timeout:  Read (6) buffered : 535 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624926, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624928, 3] ssh_channel_read_timeout:  Read (6) buffered : 529 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624929, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624931, 3] ssh_channel_read_timeout:  Read (6) buffered : 523 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624933, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624934, 3] ssh_channel_read_timeout:  Read (6) buffered : 517 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624936, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624938, 3] ssh_channel_read_timeout:  Read (6) buffered : 511 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624939, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624941, 3] ssh_channel_read_timeout:  Read (6) buffered : 505 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624943, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624944, 3] ssh_channel_read_timeout:  Read (6) buffered : 499 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624946, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624947, 3] ssh_channel_read_timeout:  Read (6) buffered : 493 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624949, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624951, 3] ssh_channel_read_timeout:  Read (6) buffered : 487 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624953, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624955, 3] ssh_channel_read_timeout:  Read (6) buffered : 481 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624957, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624959, 3] ssh_channel_read_timeout:  Read (6) buffered : 475 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624961, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624962, 3] ssh_channel_read_timeout:  Read (6) buffered : 469 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624964, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624967, 3] ssh_channel_read_timeout:  Read (6) buffered : 463 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624968, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624970, 3] ssh_channel_read_timeout:  Read (6) buffered : 457 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624972, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624973, 3] ssh_channel_read_timeout:  Read (6) buffered : 451 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624975, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624977, 3] ssh_channel_read_timeout:  Read (6) buffered : 445 bytes. Window: 2094950
2024-09-06 11:14:12,656 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624979, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624981, 3] ssh_channel_read_timeout:  Read (6) buffered : 439 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624982, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624984, 3] ssh_channel_read_timeout:  Read (6) buffered : 433 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624986, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624988, 3] ssh_channel_read_timeout:  Read (6) buffered : 427 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624990, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624992, 3] ssh_channel_read_timeout:  Read (6) buffered : 421 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624994, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624996, 3] ssh_channel_read_timeout:  Read (6) buffered : 415 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.624998, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625000, 3] ssh_channel_read_timeout:  Read (6) buffered : 409 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625002, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625004, 3] ssh_channel_read_timeout:  Read (6) buffered : 403 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625006, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,657 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625008, 3] ssh_channel_read_timeout:  Read (6) buffered : 397 bytes. Window: 2094950
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << " 09:14:12.625009, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625011, 3] ssh_channel_read_timeout:  Read (6) buffered : 391 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625013, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625014, 3] ssh_channel_read_timeout:  Read (6) buffered : 385 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625016, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625018, 3] ssh_channel_read_timeout:  Read (6) buffered : 379 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625020, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625021, 3] ssh_channel_read_timeout:  Read (6) buffered : 373 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625023, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625025, 3] ssh_channel_read_timeout:  Read (6) buffered : 367 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625027, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625029, 3] ssh_channel_read_timeout:  Read (6) buffered : 361 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625031, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,657 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625033, 3] ssh_channel_read_timeout:  Read (6) buffered : 355 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625035, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625036, 3] ssh_channel_read_timeout:  Read (6) buffered : 349 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625038, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625040, 3] ssh_channel_read_timeout:  Read (6) buffered : 343 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625053, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625056, 3] ssh_channel_read_timeout:  Read (6) buffered : 337 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625058, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625060, 3] ssh_channel_read_timeout:  Read (6) buffered : 331 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625062, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625064, 3] ssh_channel_read_timeout:  Read (6) buffered : 325 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625065, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625067, 3] ssh_channel_read_timeout:  Read (6) buffered : 319 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625069, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625070, 3] ssh_channel_read_timeout:  Read (6) buffered : 313 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625072, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625075, 3] ssh_channel_read_timeout:  Read (6) buffered : 307 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625076, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625078, 3] ssh_channel_read_timeout:  Read (6) buffered : 301 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625080, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625081, 3] ssh_channel_read_timeout:  Read (6) buffered : 295 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,658 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625083, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625084, 3] ssh_channel_read_timeout:  Read (6) buffered : 289 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625086, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625088, 3] ssh_channel_read_timeout:  Read (6) buffered : 283 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625089, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625091, 3] ssh_channel_read_timeout:  Read (6) buffered : 277 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625093, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625094, 3] ssh_channel_read_timeout:  Read (6) buffered : 271 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625096, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625098, 3] ssh_channel_read_timeout:  Read (6) buffered : 265 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625099, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625101, 3] ssh_channel_read_timeout:  Read (6) buffered : 259 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625103, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625105, 3] ssh_channel_read_timeout:  Read (6) buffered : 253 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,659 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625106, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625108, 3] ssh_channel_read_timeout:  Read (6) buffered : 247 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625110, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625111, 3] ssh_channel_read_timeout:  Read (6) buffered : 241 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625113, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625115, 3] ssh_channel_read_timeout:  Read (6) buffered : 235 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625116, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625118, 3] ssh_channel_read_timeout:  Read (6) buffered : 229 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625119, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625121, 3] ssh_channel_read_timeout:  Read (6) buffered : 223 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625123, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625124, 3] ssh_channel_read_timeout:  Read (6) buffered : 217 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625126, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625128, 3] ssh_channel_read_timeout:  Read (6) buffered : 211 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625130, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,660 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625131, 3] ssh_channel_read_timeout:  Read (6)"
2024-09-06 11:14:12,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625009, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625011, 3] ssh_channel_read_timeout:  Read (6) buffered : 391 bytes. Window: 2094950
2024-09-06 11:14:12,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625013, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625014, 3] ssh_channel_read_timeout:  Read (6) buffered : 385 bytes. Window: 2094950
2024-09-06 11:14:12,660 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625016, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625018, 3] ssh_channel_read_timeout:  Read (6) buffered : 379 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625020, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625021, 3] ssh_channel_read_timeout:  Read (6) buffered : 373 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625023, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625025, 3] ssh_channel_read_timeout:  Read (6) buffered : 367 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625027, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625029, 3] ssh_channel_read_timeout:  Read (6) buffered : 361 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625031, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625033, 3] ssh_channel_read_timeout:  Read (6) buffered : 355 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625035, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625036, 3] ssh_channel_read_timeout:  Read (6) buffered : 349 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625038, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625040, 3] ssh_channel_read_timeout:  Read (6) buffered : 343 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625053, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625056, 3] ssh_channel_read_timeout:  Read (6) buffered : 337 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625058, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625060, 3] ssh_channel_read_timeout:  Read (6) buffered : 331 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625062, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625064, 3] ssh_channel_read_timeout:  Read (6) buffered : 325 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625065, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625067, 3] ssh_channel_read_timeout:  Read (6) buffered : 319 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625069, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625070, 3] ssh_channel_read_timeout:  Read (6) buffered : 313 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625072, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625075, 3] ssh_channel_read_timeout:  Read (6) buffered : 307 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625076, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625078, 3] ssh_channel_read_timeout:  Read (6) buffered : 301 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625080, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625081, 3] ssh_channel_read_timeout:  Read (6) buffered : 295 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625083, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625084, 3] ssh_channel_read_timeout:  Read (6) buffered : 289 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625086, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625088, 3] ssh_channel_read_timeout:  Read (6) buffered : 283 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625089, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625091, 3] ssh_channel_read_timeout:  Read (6) buffered : 277 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625093, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625094, 3] ssh_channel_read_timeout:  Read (6) buffered : 271 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625096, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625098, 3] ssh_channel_read_timeout:  Read (6) buffered : 265 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625099, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625101, 3] ssh_channel_read_timeout:  Read (6) buffered : 259 bytes. Window: 2094950
2024-09-06 11:14:12,661 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625103, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625105, 3] ssh_channel_read_timeout:  Read (6) buffered : 253 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625106, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625108, 3] ssh_channel_read_timeout:  Read (6) buffered : 247 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625110, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625111, 3] ssh_channel_read_timeout:  Read (6) buffered : 241 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625113, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625115, 3] ssh_channel_read_timeout:  Read (6) buffered : 235 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625116, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625118, 3] ssh_channel_read_timeout:  Read (6) buffered : 229 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625119, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625121, 3] ssh_channel_read_timeout:  Read (6) buffered : 223 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625123, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625124, 3] ssh_channel_read_timeout:  Read (6) buffered : 217 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625126, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625128, 3] ssh_channel_read_timeout:  Read (6) buffered : 211 bytes. Window: 2094950
2024-09-06 11:14:12,662 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625130, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,662 (Wire.java:92) DEBUG : http-outgoing-3 << " buffered : 205 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,662 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,662 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,662 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625133, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,662 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,662 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625135, 3] ssh_channel_read_timeout:  Read (6) buffered : 199 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625136, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625138, 3] ssh_channel_read_timeout:  Read (6) buffered : 193 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625139, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625141, 3] ssh_channel_read_timeout:  Read (6) buffered : 187 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,663 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625143, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625144, 3] ssh_channel_read_timeout:  Read (6) buffered : 181 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625146, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625148, 3] ssh_channel_read_timeout:  Read (6) buffered : 175 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625149, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625151, 3] ssh_channel_read_timeout:  Read (6) buffered : 169 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,664 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625152, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625154, 3] ssh_channel_read_timeout:  Read (6) buffered : 163 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625156, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625158, 3] ssh_channel_read_timeout:  Read (6) buffered : 157 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625160, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,665 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625161, 3] ssh_channel_read_timeout:  Read (6) buffered : 151 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625163, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625164, 3] ssh_channel_read_timeout:  Read (6) buffered : 145 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625166, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625168, 3] ssh_channel_read_timeout:  Read (6) buffered : 139 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625169, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625171, 3] ssh_channel_read_timeout:  Read (6) buffered : 133 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625173, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625174, 3] ssh_channel_read_timeout:  Read (6) buffered : 127 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625176, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625177, 3] ssh_channel_read_timeout:  Read (6) buffered : 121 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625179, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625181, 3] ssh_channel_read_timeout:  Read (6) buffered : 115 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625183, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625184, 3] ssh_channel_read_timeout:  Read (6) buffered : 109 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625186, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.625188, 3] ssh_channel_read_timeout:  Read (6) buffered : 103 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625189, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,666 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,668 (PowerLogger.java:338) DEBUG : The reply is <rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="2"><ok/></rpc-reply>
2024-09-06 11:14:12,669 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,669 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625191, 3] ssh_channel_read_timeout:  Read (6) buffered : 97 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,669 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,669 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,669 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625193, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,671 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,673 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,673 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625194, 3] ssh_channel_read_timeout:  Read (6) buffered : 91 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,673 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,673 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,673 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625196, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,677 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,677 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,678 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625198, 3] ssh_channel_read_timeout:  Read (6) buffered : 85 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,679 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,679 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,679 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625199, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,679 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,679 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,680 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625201, 3] ssh_channel_read_timeout:  Read (6) buffered : 79 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,680 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,681 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,681 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625202, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,681 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,681 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,681 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625204, 3] ssh_channel_read_timeout:  Read (6) buffered : 73 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,682 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,682 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,682 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625206, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,682 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625208, 3] ssh_channel_read_timeout:  Read (6) buffered : 67 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625209, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625211, 3] ssh_channel_read_timeout:  Read (6) buffered : 61 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625212, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625214, 3] ssh_channel_read_timeout:  Read (6) buffered : 55 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625217, 3] ssh_channel_read_timeout:  Read (6) buffered : 49 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,683 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625219, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625221, 3] ssh_channel_read_timeout:  Read (6) buffered : 43 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625222, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625224, 3] ssh_channel_read_timeout:  Read (6) buffered : 37 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,684 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625226, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625227, 3] ssh_channel_read_timeout:  Read (6) buffered : 31 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625229, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625230, 3] ssh_channel_read_timeout:  Read (6) buffered : 25 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625232, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.625234, 3] ssh_channel_read_timeout:  Read (6) buffered : 19 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625236, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,685 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,686 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,686 (Wire.java:106) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14"
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625131, 3] ssh_channel_read_timeout:  Read (6) buffered : 205 bytes. Window: 2094950
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625133, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625135, 3] ssh_channel_read_timeout:  Read (6) buffered : 199 bytes. Window: 2094950
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625136, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625138, 3] ssh_channel_read_timeout:  Read (6) buffered : 193 bytes. Window: 2094950
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625139, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625141, 3] ssh_channel_read_timeout:  Read (6) buffered : 187 bytes. Window: 2094950
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625143, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625144, 3] ssh_channel_read_timeout:  Read (6) buffered : 181 bytes. Window: 2094950
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625146, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,686 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625148, 3] ssh_channel_read_timeout:  Read (6) buffered : 175 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625149, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625151, 3] ssh_channel_read_timeout:  Read (6) buffered : 169 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625152, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625154, 3] ssh_channel_read_timeout:  Read (6) buffered : 163 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625156, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625158, 3] ssh_channel_read_timeout:  Read (6) buffered : 157 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625160, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625161, 3] ssh_channel_read_timeout:  Read (6) buffered : 151 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625163, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625164, 3] ssh_channel_read_timeout:  Read (6) buffered : 145 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625166, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625168, 3] ssh_channel_read_timeout:  Read (6) buffered : 139 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625169, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625171, 3] ssh_channel_read_timeout:  Read (6) buffered : 133 bytes. Window: 2094950
2024-09-06 11:14:12,687 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625173, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625174, 3] ssh_channel_read_timeout:  Read (6) buffered : 127 bytes. Window: 2094950
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625176, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625177, 3] ssh_channel_read_timeout:  Read (6) buffered : 121 bytes. Window: 2094950
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625179, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625181, 3] ssh_channel_read_timeout:  Read (6) buffered : 115 bytes. Window: 2094950
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625183, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625184, 3] ssh_channel_read_timeout:  Read (6) buffered : 109 bytes. Window: 2094950
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625186, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625188, 3] ssh_channel_read_timeout:  Read (6) buffered : 103 bytes. Window: 2094950
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625189, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625191, 3] ssh_channel_read_timeout:  Read (6) buffered : 97 bytes. Window: 2094950
2024-09-06 11:14:12,688 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625193, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,689 (PowerLogger.java:328) DEBUG : <rpc message-id="3" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
  <close-session/>
</rpc>
]]>]]>
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625194, 3] ssh_channel_read_timeout:  Read (6) buffered : 91 bytes. Window: 2094950
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625196, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625198, 3] ssh_channel_read_timeout:  Read (6) buffered : 85 bytes. Window: 2094950
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625199, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625201, 3] ssh_channel_read_timeout:  Read (6) buffered : 79 bytes. Window: 2094950
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625202, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625204, 3] ssh_channel_read_timeout:  Read (6) buffered : 73 bytes. Window: 2094950
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625206, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625208, 3] ssh_channel_read_timeout:  Read (6) buffered : 67 bytes. Window: 2094950
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625209, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625211, 3] ssh_channel_read_timeout:  Read (6) buffered : 61 bytes. Window: 2094950
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625212, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,689 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625214, 3] ssh_channel_read_timeout:  Read (6) buffered : 55 bytes. Window: 2094950
2024-09-06 11:14:12,690 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625216, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,690 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625217, 3] ssh_channel_read_timeout:  Read (6) buffered : 49 bytes. Window: 2094950
2024-09-06 11:14:12,690 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625219, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,690 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625221, 3] ssh_channel_read_timeout:  Read (6) buffered : 43 bytes. Window: 2094950
2024-09-06 11:14:12,690 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625222, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,691 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625224, 3] ssh_channel_read_timeout:  Read (6) buffered : 37 bytes. Window: 2094950
2024-09-06 11:14:12,692 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625226, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,692 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625227, 3] ssh_channel_read_timeout:  Read (6) buffered : 31 bytes. Window: 2094950
2024-09-06 11:14:12,692 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625229, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,692 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625230, 3] ssh_channel_read_timeout:  Read (6) buffered : 25 bytes. Window: 2094950
2024-09-06 11:14:12,692 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625232, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,692 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625234, 3] ssh_channel_read_timeout:  Read (6) buffered : 19 bytes. Window: 2094950
2024-09-06 11:14:12,692 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625236, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << ":12.625237, 3] ssh_channel_read_timeout:  Read (6) buffered : 13 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625239, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.625241, 3] ssh_channel_read_timeout:  Read (6) buffered : 7 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625242, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,692 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,693 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.625244, 3] ssh_channel_read_timeout:  Read (1) buffered : 1 bytes. Window: 2094950[\n]"
2024-09-06 11:14:12,693 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,693 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,693 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.625246, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)[\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[INF]: NP: edit-config error-option "stop-on-error" not supported, rollback-on-error will be performed.[\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.699498, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=204, in_blocks=154][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.699670, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,694 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.699680, 4] ssh_socket_unbuffered_write:  wrote 180[\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.699683, 3] packet_send2:  packet: wrote [type=94, len=108, padding_size=11, comp=100, payload=100][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "60[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]X[2024/09/06 09:14:12.699687, 3] channel_write_common:  ssh_channel_write wrote 91 bytes[\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.699693, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=204, in_blocks=148][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.699722, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "5f[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]W[2024/09/06 09:14:12.699725, 3] channel_write_common:  ssh_channel_write wrote 6 bytes[\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,696 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.699732, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100[\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.699744, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,697 (PowerLogger.java:338) DEBUG : stopKeepAliveThread() on session 2
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.699746, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "36[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0].[INF]: NP: Session 2: thread 1 event new RPC.[\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625237, 3] ssh_channel_read_timeout:  Read (6) buffered : 13 bytes. Window: 2094950
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625239, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625241, 3] ssh_channel_read_timeout:  Read (6) buffered : 7 bytes. Window: 2094950
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625242, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625244, 3] ssh_channel_read_timeout:  Read (1) buffered : 1 bytes. Window: 2094950
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.625246, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094950 bytes)
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: NP: edit-config error-option "stop-on-error" not supported, rollback-on-error will be performed.
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699498, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=204, in_blocks=154]
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699670, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699680, 4] ssh_socket_unbuffered_write:  wrote 180
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699683, 3] packet_send2:  packet: wrote [type=94, len=108, padding_size=11, comp=100, payload=100]
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699687, 3] channel_write_common:  ssh_channel_write wrote 91 bytes
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699693, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=204, in_blocks=148]
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699722, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15]
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699725, 3] channel_write_common:  ssh_channel_write wrote 6 bytes
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699732, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699744, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.699746, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:12,697 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: NP: Session 2: thread 1 event new RPC.
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.724131, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0[\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.724181, 4] ssh_socket_unbuffered_read:  read 196[\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,697 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724278, 3] ssh_packet_socket_callback:  packet: read type 94 [len=128,padding=15,comp=112,payload=112][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.724283, 3] ssh_packet_process:  Dispatching handler for packet type 94[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "83[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]{[2024/09/06 09:14:12.724290, 3] channel_rcv_data:  Channel receiving 103 bytes data (local win=2094950 remote win=1061849)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "73[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]k[2024/09/06 09:14:12.724293, 3] channel_default_bufferize:  placing 103 bytes into channel buffer (stdout)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.724295, 3] channel_rcv_data:  Channel windows are now (local win=2094847 remote win=1061849)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.724299, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=204, in_blocks=155][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "5d[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]U[2024/09/06 09:14:12.724301, 4] ssh_socket_pollcallback:  sending control flow event[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "7a[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]r[2024/09/06 09:14:12.724304, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "72[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]j[2024/09/06 09:14:12.724323, 3] ssh_channel_read_timeout:  Read (6) buffered : 103 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724326, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724329, 3] ssh_channel_read_timeout:  Read (6) buffered : 97 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724332, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724334, 3] ssh_channel_read_timeout:  Read (6) buffered : 91 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724336, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724340, 3] ssh_channel_read_timeout:  Read (6) buffered : 85 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724342, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724345, 3] ssh_channel_read_timeout:  Read (6) buffered : 79 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724348, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724350, 3] ssh_channel_read_timeout:  Read (6) buffered : 73 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724352, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,698 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724355, 3] ssh_channel_read_timeout:  Read (6) buffered : 67 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724358, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724361, 3] ssh_channel_read_timeout:  Read (6) buffered : 61 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724363, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724365, 3] ssh_channel_read_timeout:  Read (6) buffered : 55 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724367, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724369, 3] ssh_channel_read_timeout:  Read (6) buffered : 49 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724372, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724374, 3] ssh_channel_read_timeout:  Read (6) buffered : 43 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724376, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724379, 3] ssh_channel_read_timeout:  Read (6) buffered : 37 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724381, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724383, 3] ssh_channel_read_timeout:  Read (6) buffered : 31 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724385, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724388, 3] ssh_channel_read_timeout:  Read (6) buffered : 25 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724430, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724435, 3] ssh_channel_read_timeout:  Read (6) buffered : 19 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724438, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,699 (Wire.java:92) DEBUG : http-outgoing-3 << "71[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]i[2024/09/06 09:14:12.724440, 3] ssh_channel_read_timeout:  Read (6) buffered : 13 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724443, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.724446, 3] ssh_channel_read_timeout:  Read (6) buffered : 7 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724448, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.724451, 3] ssh_channel_read_timeout:  Read (1) buffered : 1 bytes. Window: 2094847[\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.724453, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)[\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,700 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.724529, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=161][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.724653, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.724660, 4] ssh_socket_unbuffered_write:  wrote 180[\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "80[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]x[2024/09/06 09:14:12.724664, 3] packet_send2:  packet: wrote [type=94, len=108, padding_size=11, comp=100, payload=100][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "60[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]X[2024/09/06 09:14:12.724667, 3] channel_write_common:  ssh_channel_write wrote 91 bytes[\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.724672, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=155][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,701 (Wire.java:92) DEBUG : http-outgoing-3 << "7d[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]u[2024/09/06 09:14:12.724701, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "5f[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]W[2024/09/06 09:14:12.724704, 3] channel_write_common:  ssh_channel_write wrote 6 bytes[\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "78[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]p[2024/09/06 09:14:12.724710, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100[\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "62[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]Z[2024/09/06 09:14:12.724723, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket[\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "50[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]H[2024/09/06 09:14:12.724725, 4] ssh_socket_unbuffered_write:  wrote 100[\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "36[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0].[INF]: NP: Session 2: thread 1 event new RPC.[\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "41[\r][\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]9[INF]: NP: Session 2: thread 1 event session terminated.[\n]"
2024-09-06 11:14:12,702 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724131, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 0
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724181, 4] ssh_socket_unbuffered_read:  read 196
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724278, 3] ssh_packet_socket_callback:  packet: read type 94 [len=128,padding=15,comp=112,payload=112]
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724283, 3] ssh_packet_process:  Dispatching handler for packet type 94
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724290, 3] channel_rcv_data:  Channel receiving 103 bytes data (local win=2094950 remote win=1061849)
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724293, 3] channel_default_bufferize:  placing 103 bytes into channel buffer (stdout)
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724295, 3] channel_rcv_data:  Channel windows are now (local win=2094847 remote win=1061849)
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724299, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=204, in_blocks=155]
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724301, 4] ssh_socket_pollcallback:  sending control flow event
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724304, 4] ssh_packet_socket_controlflow_callback:  sending channel_write_wontblock callback
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724323, 3] ssh_channel_read_timeout:  Read (6) buffered : 103 bytes. Window: 2094847
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724326, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,700 (AbstractCli.java:90) DEBUG : Disconnecting cli
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724329, 3] ssh_channel_read_timeout:  Read (6) buffered : 97 bytes. Window: 2094847
2024-09-06 11:14:12,702 (ImplSsh.java:163) DEBUG : Disconnecting ssh connection: localhost:32800_ID539181
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724332, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,702 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724334, 3] ssh_channel_read_timeout:  Read (6) buffered : 91 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724336, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724340, 3] ssh_channel_read_timeout:  Read (6) buffered : 85 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724342, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724345, 3] ssh_channel_read_timeout:  Read (6) buffered : 79 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724348, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724350, 3] ssh_channel_read_timeout:  Read (6) buffered : 73 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724352, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724355, 3] ssh_channel_read_timeout:  Read (6) buffered : 67 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724358, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724361, 3] ssh_channel_read_timeout:  Read (6) buffered : 61 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724363, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724365, 3] ssh_channel_read_timeout:  Read (6) buffered : 55 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724367, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724369, 3] ssh_channel_read_timeout:  Read (6) buffered : 49 bytes. Window: 2094847
2024-09-06 11:14:12,703 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724372, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724374, 3] ssh_channel_read_timeout:  Read (6) buffered : 43 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724376, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724379, 3] ssh_channel_read_timeout:  Read (6) buffered : 37 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724381, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724383, 3] ssh_channel_read_timeout:  Read (6) buffered : 31 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724385, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724388, 3] ssh_channel_read_timeout:  Read (6) buffered : 25 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724430, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724435, 3] ssh_channel_read_timeout:  Read (6) buffered : 19 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724438, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724440, 3] ssh_channel_read_timeout:  Read (6) buffered : 13 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724443, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724446, 3] ssh_channel_read_timeout:  Read (6) buffered : 7 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724448, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724451, 3] ssh_channel_read_timeout:  Read (1) buffered : 1 bytes. Window: 2094847
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724453, 3] grow_window:  growing window (channel 43:100) to 2097152 bytes : not needed (2094847 bytes)
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724529, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=161]
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724653, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724660, 4] ssh_socket_unbuffered_write:  wrote 180
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724664, 3] packet_send2:  packet: wrote [type=94, len=108, padding_size=11, comp=100, payload=100]
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724667, 3] channel_write_common:  ssh_channel_write wrote 91 bytes
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724672, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=155]
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724701, 3] packet_send2:  packet: wrote [type=94, len=28, padding_size=16, comp=15, payload=15]
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724704, 3] channel_write_common:  ssh_channel_write wrote 6 bytes
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724710, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLOUT ), out buffer 100
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724723, 3] ssh_socket_unbuffered_write:  Enabling POLLOUT for socket
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.724725, 4] ssh_socket_unbuffered_write:  wrote 100
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: NP: Session 2: thread 1 event new RPC.
2024-09-06 11:14:12,704 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: NP: Session 2: thread 1 event session terminated.
2024-09-06 11:14:12,705 (ImplSsh.java:226) DEBUG : Failed to ping the session(localhost:32800_ID539181) to verify that it is up and running. Session has probably been lost.isConnected failure reason:
java.io.IOException: The ping request failed.
	at com.trilead.ssh2.channel.ChannelManager.requestChannelTrileadPing(ChannelManager.java:638)
	at com.trilead.ssh2.Session.ping(Session.java:388)
	at com.ericsson.commonlibrary.remotecli.ImplSsh.isConnectedImpl(ImplSsh.java:222)
	at com.ericsson.commonlibrary.remotecli.AbstractCli.isConnected(AbstractCli.java:182)
	at com.ericsson.commonlibrary.remotecli.DecoratorCore$Core.isConnected(DecoratorCore.java:118)
	at com.ericsson.commonlibrary.remotecli.Decorator.isConnected(Decorator.java:97)
	at com.ericsson.commonlibrary.remotecli.DecoratorKeepAlive.lambda$startKeepAliveThread$0(DecoratorKeepAlive.java:56)
	at com.ericsson.commonlibrary.remotecli.ThreadUtil.lambda$decorateWithMDC$1(ThreadUtil.java:184)
	at com.ericsson.commonlibrary.remotecli.ThreadUtil.lambda$decorateWithThreadNaming$3(ThreadUtil.java:203)
	at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
	at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.io.IOException: This SSH2 channel is not open. state: 4
	at com.trilead.ssh2.channel.ChannelManager.ioException(ChannelManager.java:1542)
	at com.trilead.ssh2.channel.ChannelManager.waitForChannelRequestResult(ChannelManager.java:169)
	at com.trilead.ssh2.channel.ChannelManager.requestChannelTrileadPing(ChannelManager.java:631)
	... 13 more
Caused by: java.io.IOException: Closed due to user request
	at com.trilead.ssh2.channel.Channel.setReasonClosed(Channel.java:333)
	at com.trilead.ssh2.channel.ChannelManager.closeChannel(ChannelManager.java:291)
	at com.trilead.ssh2.Session.close(Session.java:579)
	at com.ericsson.commonlibrary.remotecli.ImplSsh.disconnectImpl(ImplSsh.java:174)
	at com.ericsson.commonlibrary.remotecli.AbstractCli.disconnect(AbstractCli.java:91)
	at com.ericsson.commonlibrary.remotecli.DecoratorCore$Core.disconnect(DecoratorCore.java:72)
	at com.ericsson.commonlibrary.remotecli.Decorator.disconnect(Decorator.java:52)
	at com.ericsson.commonlibrary.remotecli.DecoratorKeepAlive.disconnect(DecoratorKeepAlive.java:44)
	at com.ericsson.commonlibrary.remotecli.Decorator.disconnect(Decorator.java:52)
	at com.ericsson.commonlibrary.remotecli.Decorator.disconnect(Decorator.java:52)
	at com.ericsson.commonlibrary.remotecli.Decorator.disconnect(Decorator.java:52)
	at com.ericsson.commonlibrary.netconf.transport.Ssh.disconnectTransport(Ssh.java:118)
	at com.ericsson.commonlibrary.netconf.transport.AbstractTransport.cleanUp(AbstractTransport.java:649)
	at com.ericsson.commonlibrary.netconf.transport.AbstractTransport.disconnect(AbstractTransport.java:643)
	at com.ericsson.commonlibrary.netconf.transport.AbstractTransport.closeSession(AbstractTransport.java:143)
	at com.ericsson.commonlibrary.netconf.AbstractNetconfBase.closeSession(AbstractNetconfBase.java:366)
	at com.ericsson.commonlibrary.netconf.NetconfSshNotificationIT.connectWithNetconf10(NetconfSshNotificationIT.java:75)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:568)
	at org.testng.internal.invokers.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:139)
	at org.testng.internal.invokers.TestInvoker.invokeMethod(TestInvoker.java:664)
	at org.testng.internal.invokers.TestInvoker.invokeTestMethod(TestInvoker.java:228)
	at org.testng.internal.invokers.MethodRunner.runInSequence(MethodRunner.java:63)
	at org.testng.internal.invokers.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:961)
	at org.testng.internal.invokers.TestInvoker.invokeTestMethods(TestInvoker.java:201)
	at org.testng.internal.invokers.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:148)
	at org.testng.internal.invokers.TestMethodWorker.run(TestMethodWorker.java:128)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
	at org.testng.TestRunner.privateRun(TestRunner.java:819)
	at org.testng.TestRunner.run(TestRunner.java:619)
	at org.testng.SuiteRunner.runTest(SuiteRunner.java:443)
	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:437)
	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:397)
	at org.testng.SuiteRunner.run(SuiteRunner.java:336)
	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:95)
	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1301)
	at org.testng.TestNG.runSuitesLocally(TestNG.java:1228)
	at org.testng.TestNG.runSuites(TestNG.java:1134)
	at org.testng.TestNG.run(TestNG.java:1101)
	at com.microsoft.java.test.runner.testng.TestNGRunner.run(TestNGRunner.java:45)
	at com.microsoft.java.test.runner.testng.TestNGLauncher.execute(TestNGLauncher.java:32)
	at com.microsoft.java.test.runner.Launcher.main(Launcher.java:57)
2024-09-06 11:14:12,725 (Wire.java:92) DEBUG : http-outgoing-3 << "3e[\r][\n]"
2024-09-06 11:14:12,725 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]6[INF]: NP: Generated new event (netconf-session-end).[\n]"
2024-09-06 11:14:12,725 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,725 (Slf4jLogConsumer.java:73)  INFO : STDERR: [INF]: NP: Generated new event (netconf-session-end).
2024-09-06 11:14:12,725 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,725 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.756667, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=155][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7b[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]s[2024/09/06 09:14:12.756786, 3] packet_send2:  packet: wrote [type=96, len=12, padding_size=10, comp=5, payload=5][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "65[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]][2024/09/06 09:14:12.756796, 3] ssh_channel_send_eof:  Sent a EOF on client channel (43:100)[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7e[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]v[2024/09/06 09:14:12.756805, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 84[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "4e[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]F[2024/09/06 09:14:12.756865, 4] ssh_socket_unbuffered_read:  read 284[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:12.756897, 3] ssh_packet_socket_callback:  packet: read type 96 [len=16,padding=10,comp=5,payload=5][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.756900, 3] ssh_packet_process:  Dispatching handler for packet type 96[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "5b[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]S[2024/09/06 09:14:12.756904, 3] channel_rcv_eof:  Received eof on channel (43:100)[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.756908, 3] ssh_packet_socket_callback:  Processing 200 bytes left in socket buffer[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:12.756922, 3] ssh_packet_socket_callback:  packet: read type 97 [len=16,padding=10,comp=5,payload=5][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "64[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]\[2024/09/06 09:14:12.756925, 3] ssh_packet_process:  Dispatching handler for packet type 97[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "5f[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]W[2024/09/06 09:14:12.756928, 3] channel_rcv_close:  Received close on channel (43:100)[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.756931, 3] ssh_packet_socket_callback:  Processing 116 bytes left in socket buffer[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7f[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]w[2024/09/06 09:14:12.756947, 3] ssh_packet_socket_callback:  packet: read type 1 [len=48,padding=7,comp=40,payload=40][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "63[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0][[2024/09/06 09:14:12.756950, 3] ssh_packet_process:  Dispatching handler for packet type 1[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "84[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]|[2024/09/06 09:14:12.756955, 3] ssh_packet_disconnect_callback:  Received SSH_MSG_DISCONNECT 11:Closed due to user request.[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "85[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]}[2024/09/06 09:14:12.756958, 4] ssh_packet_disconnect_callback:  Received SSH_MSG_DISCONNECT: 11:Closed due to user request.[\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.757013, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=157][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.757017, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=157][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "7c[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]t[2024/09/06 09:14:12.757020, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=157][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,726 (Wire.java:92) DEBUG : http-outgoing-3 << "69[\r][\n]"
2024-09-06 11:14:12,727 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]a[2024/09/06 09:14:12.757022, 1] ssh_socket_exception_callback:  Socket exception callback: 2 (2)[\n]"
2024-09-06 11:14:12,727 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,727 (Wire.java:92) DEBUG : http-outgoing-3 << "70[\r][\n]"
2024-09-06 11:14:12,727 (Wire.java:92) DEBUG : http-outgoing-3 << "[0x2][0x0][0x0][0x0][0x0][0x0][0x0]h[2024/09/06 09:14:12.757030, 4] ssh_socket_exception_callback:  Socket error: No such file or directory[\n]"
2024-09-06 11:14:12,727 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756667, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=155]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756786, 3] packet_send2:  packet: wrote [type=96, len=12, padding_size=10, comp=5, payload=5]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756796, 3] ssh_channel_send_eof:  Sent a EOF on client channel (43:100)
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756805, 4] ssh_socket_pollcallback:  Poll callback on socket 52 (POLLIN POLLOUT ), out buffer 84
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756865, 4] ssh_socket_unbuffered_read:  read 284
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756897, 3] ssh_packet_socket_callback:  packet: read type 96 [len=16,padding=10,comp=5,payload=5]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756900, 3] ssh_packet_process:  Dispatching handler for packet type 96
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756904, 3] channel_rcv_eof:  Received eof on channel (43:100)
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756908, 3] ssh_packet_socket_callback:  Processing 200 bytes left in socket buffer
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756922, 3] ssh_packet_socket_callback:  packet: read type 97 [len=16,padding=10,comp=5,payload=5]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756925, 3] ssh_packet_process:  Dispatching handler for packet type 97
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756928, 3] channel_rcv_close:  Received close on channel (43:100)
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756931, 3] ssh_packet_socket_callback:  Processing 116 bytes left in socket buffer
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756947, 3] ssh_packet_socket_callback:  packet: read type 1 [len=48,padding=7,comp=40,payload=40]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756950, 3] ssh_packet_process:  Dispatching handler for packet type 1
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756955, 3] ssh_packet_disconnect_callback:  Received SSH_MSG_DISCONNECT 11:Closed due to user request.
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.756958, 4] ssh_packet_disconnect_callback:  Received SSH_MSG_DISCONNECT: 11:Closed due to user request.
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.757013, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=157]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.757017, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=157]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.757020, 3] ssh_packet_need_rekey:  rekey: [data_rekey_needed=0, out_blocks=210, in_blocks=157]
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.757022, 1] ssh_socket_exception_callback:  Socket exception callback: 2 (2)
2024-09-06 11:14:12,727 (Slf4jLogConsumer.java:73)  INFO : STDERR: [2024/09/06 09:14:12.757030, 4] ssh_socket_exception_callback:  Socket error: No such file or directory
2024-09-06 11:14:12,757 (ImplSsh.java:179) DEBUG : Done disconnecting ssh connection: localhost:32800_ID539181
2024-09-06 11:14:12,757 (AbstractCli.java:92) DEBUG : Done disconnecting cli
2024-09-06 11:14:12,757 (Ssh.java:119) DEBUG : The SSH session,'2', is successfully closed
2024-09-06 11:14:43,202 (AbstrDockerCmd.java:32) DEBUG : Cmd: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,false
2024-09-06 11:14:43,202 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json], queryParams={}}
2024-09-06 11:14:43,202 (InternalHttpClient.java:172) DEBUG : ex-00000026: preparing request execution
2024-09-06 11:14:43,202 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:43,203 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:43,203 (ProtocolExec.java:161) DEBUG : ex-00000026: target auth state: UNCHALLENGED
2024-09-06 11:14:43,203 (ProtocolExec.java:167) DEBUG : ex-00000026: proxy auth state: UNCHALLENGED
2024-09-06 11:14:43,203 (ConnectExec.java:116) DEBUG : ex-00000026: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:43,203 (InternalExecRuntime.java:101) DEBUG : ex-00000026: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:43,203 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000026: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,203 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000026: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,203 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000026: acquired ep-00000025
2024-09-06 11:14:43,203 (InternalExecRuntime.java:120) DEBUG : ex-00000026: acquired endpoint ep-00000025
2024-09-06 11:14:43,203 (MainClientExec.java:102) DEBUG : ex-00000026: executing GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1
2024-09-06 11:14:43,203 (InternalExecRuntime.java:213) DEBUG : ep-00000025: start execution ex-00000026
2024-09-06 11:14:43,203 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000025: executing exchange ex-00000026 over http-outgoing-6
2024-09-06 11:14:43,203 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-6 >> GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1
2024-09-06 11:14:43,203 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> accept: application/json
2024-09-06 11:14:43,203 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:43,203 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:43,203 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:43,203 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Host: localhost:2375
2024-09-06 11:14:43,203 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Connection: keep-alive
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:43,203 (Wire.java:92) DEBUG : http-outgoing-6 >> "[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "Date: Fri, 06 Sep 2024 09:14:43 GMT[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,204 (Wire.java:92) DEBUG : http-outgoing-6 << "1d26[\r][\n]"
2024-09-06 11:14:43,205 (Wire.java:106) DEBUG : http-outgoing-6 << "{"Id":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","Created":"2024-09-06T09:14:04.551871089Z","Path":"/usr/sbin/netopeer2-server","Args":["-d","-c","SSH"],"State":{"Status":"running","Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":39135,"ExitCode":0,"Error":"","StartedAt":"2024-09-06T09:14:05.132904143Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd","ResolvConfPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/resolv.conf","HostnamePath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/hostname","HostsPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/hosts","LogPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a-json.log","Name":"/beautiful_thompson","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":null,"HostConfig":{"Binds":[],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"830/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":false,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":["host.testcontainers.internal:172.17.0.3"],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":null,"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":["/proc/asound","/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware"],"ReadonlyPaths":["/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"]},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54-init/diff:/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/diff:/var/lib/docker/overlay2/a1e978227683a0c74d699bb515a59555a769cfe08431429ac07b0f98fa1212db/diff:/var/lib/docker/overlay2/d81ac57fc7a5b869fe2182c21ef61d52af192008d08b565a004dbbbd355898c8/diff:/var/lib/docker/overlay2/a01fa762a3a0fc1375ef511648f07937d60e5146b3d61e9d3bbb7d7910a14fc2/diff:/var/lib/docker/overlay2/da40b919c95987f2194bcfc0c1803b933e106fe4d197b1b8b7ffadf9e4dc56e2/diff:/var/lib/docker/overlay2/8a1f527bca8deb0c5343427d0171097906522d16801a6e9b5a70437473104ef0/diff:/var/lib/docker/overlay2/667c16009e95a4b7d5c3ff26f916548c75e8c65fd0d0d6a7f2177d6d598844fa/diff:/var/lib/docker/overlay2/2e44d3c7c20a9ea6c4e9c615bdac0198419be54c482ebab6a14fa51649c007ca/diff:/var/lib/docker/overlay2/a2d0b870c0f17eea14ade32620e70e1f3afef83d8493a8a242fe8879a39331a2/diff:/var/lib/docker/overlay2/5a6272e6569eafc40072e8a4d862df0e730021f273b525d9e2e76ab4e5f4f0c6/diff:/var/lib/docker/overlay2/36d11b7f08154e5bc7d4d6a33c6d2abb123dec6a9ed393efe262e72f35d7"
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-6 << HTTP/1.1 200 OK
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Api-Version: 1.43
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Content-Type: application/json
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Docker-Experimental: false
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Ostype: linux
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Date: Fri, 06 Sep 2024 09:14:43 GMT
2024-09-06 11:14:43,205 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Transfer-Encoding: chunked
2024-09-06 11:14:43,205 (MainClientExec.java:126) DEBUG : ex-00000026: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:43,205 (Wire.java:92) DEBUG : http-outgoing-6 << "8d1b/diff:/var/lib/docker/overlay2/64fd49538ce471e563fab65c353bfde207894aec03e10b2892d4570545ce7616/diff:/var/lib/docker/overlay2/ba2f7c137723b6123383558618d00df8a59ad7f75e2e905be3b0ee9d9a03e0a3/diff:/var/lib/docker/overlay2/d3f4e0a71673529fb2f7d8a989c9247be31aae483583f5a626625dc628c4e055/diff:/var/lib/docker/overlay2/529699c40f54fb41ef0b1d473e01035d586d153a4d8e80e31913cbc236fdc1ce/diff:/var/lib/docker/overlay2/32eaf33b06ade0250187a3c35d35d59ce448280a6df310cb0ee1a59dde9959b3/diff:/var/lib/docker/overlay2/a932ade4b3512afa0bf7f291816db0b963c499cfeb51ece2a303b2a1af347581/diff:/var/lib/docker/overlay2/02f89e2ac7bbc71b91b5079fed3c86920d73f2983077fead52bf50b66d4d36d4/diff","MergedDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/merged","UpperDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/diff","WorkDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/work"},"Name":"overlay2"},"Mounts":[],"Config":{"Hostname":"4372e1732e49","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"4334/tcp":{},"4335/tcp":{},"6513/tcp":{},"830/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","EDITOR=vim","SSH_LISTEN_XML_CONTENT=<netconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>"],"Cmd":["/usr/sbin/netopeer2-server","-d","-c","SSH"],"Image":"netopeer2:latest","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"67cafcad2dfc49e7173d9ffbb086342f1eeb5a032200da63a22c0c342125acc1","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{"4334/tcp":null,"4335/tcp":null,"6513/tcp":null,"830/tcp":[{"HostIp":"0.0.0.0","HostPort":"32800"},{"HostIp":"::","HostPort":"32800"}]},"SandboxKey":"/var/run/docker/netns/67cafcad2dfc","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"e7fca4300c7a23f993b3dde567ee0b19ab237b39dbcf7cb46e12dfe08b5c66f9","Gateway":"172.17.0.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.0.4","IPPrefixLen":16,"IPv6Gateway":"","MacAddress":"02:42:ac:11:00:04","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"e7fca4300c7a23f993b3dde567ee0b19ab237b39dbcf7cb46e12dfe08b5c66f9","Gateway":"172.17.0.1","IPAddress":"172.17.0.4","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"02:42:ac:11:00:04","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:43,206 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,206 (Wire.java:92) DEBUG : http-outgoing-6 << "0[\r][\n]"
2024-09-06 11:14:43,206 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,207 (InternalExecRuntime.java:255) DEBUG : ep-00000025: releasing valid endpoint
2024-09-06 11:14:43,207 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000025: releasing endpoint
2024-09-06 11:14:43,207 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000025: connection http-outgoing-6 can be kept alive for 3 MINUTES
2024-09-06 11:14:43,207 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000025: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,208 (AbstrDockerCmd.java:32) DEBUG : Cmd: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,<null>
2024-09-06 11:14:43,209 (InternalHttpClient.java:172) DEBUG : ex-00000027: preparing request execution
2024-09-06 11:14:43,209 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:43,209 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:43,209 (ProtocolExec.java:161) DEBUG : ex-00000027: target auth state: UNCHALLENGED
2024-09-06 11:14:43,209 (ProtocolExec.java:167) DEBUG : ex-00000027: proxy auth state: UNCHALLENGED
2024-09-06 11:14:43,209 (ConnectExec.java:116) DEBUG : ex-00000027: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:43,209 (InternalExecRuntime.java:101) DEBUG : ex-00000027: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:43,209 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000027: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,209 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000027: endpoint leased [route: {}->http://localhost:2375][total available: 0; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,209 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000027: acquired ep-00000026
2024-09-06 11:14:43,209 (InternalExecRuntime.java:120) DEBUG : ex-00000027: acquired endpoint ep-00000026
2024-09-06 11:14:43,209 (MainClientExec.java:102) DEBUG : ex-00000027: executing POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/kill HTTP/1.1
2024-09-06 11:14:43,210 (InternalExecRuntime.java:213) DEBUG : ep-00000026: start execution ex-00000027
2024-09-06 11:14:43,210 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000026: executing exchange ex-00000027 over http-outgoing-6
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-6 >> POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/kill HTTP/1.1
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> accept: application/json
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> content-type: application/json
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Host: localhost:2375
2024-09-06 11:14:43,210 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Connection: keep-alive
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "POST /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/kill HTTP/1.1[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "content-type: application/json[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:43,210 (Wire.java:92) DEBUG : http-outgoing-6 >> "[\r][\n]"
2024-09-06 11:14:43,227 (ImplSsh.java:226) DEBUG : Failed to ping the session(localhost:32800_ID1027473) to verify that it is up and running. Session has probably been lost.isConnected failure reason:
java.io.IOException: The ping request failed.
	at com.trilead.ssh2.channel.ChannelManager.requestChannelTrileadPing(ChannelManager.java:638)
	at com.trilead.ssh2.Session.ping(Session.java:388)
	at com.ericsson.commonlibrary.remotecli.ImplSsh.isConnectedImpl(ImplSsh.java:222)
	at com.ericsson.commonlibrary.remotecli.AbstractCli.isConnected(AbstractCli.java:182)
	at com.ericsson.commonlibrary.remotecli.DecoratorCore$Core.isConnected(DecoratorCore.java:118)
	at com.ericsson.commonlibrary.remotecli.Decorator.isConnected(Decorator.java:97)
	at com.ericsson.commonlibrary.remotecli.DecoratorKeepAlive.lambda$startKeepAliveThread$0(DecoratorKeepAlive.java:56)
	at com.ericsson.commonlibrary.remotecli.ThreadUtil.lambda$decorateWithMDC$1(ThreadUtil.java:184)
	at com.ericsson.commonlibrary.remotecli.ThreadUtil.lambda$decorateWithThreadNaming$3(ThreadUtil.java:203)
	at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
	at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.io.IOException: This SSH2 channel is not open. state: 4
	at com.trilead.ssh2.channel.ChannelManager.ioException(ChannelManager.java:1542)
	at com.trilead.ssh2.channel.ChannelManager.waitForChannelRequestResult(ChannelManager.java:169)
	at com.trilead.ssh2.channel.ChannelManager.requestChannelTrileadPing(ChannelManager.java:631)
	... 13 more
Caused by: java.io.IOException: The connection is being shutdown
	at com.trilead.ssh2.channel.ChannelManager.handleEndMessage(ChannelManager.java:1524)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:541)
	... 1 more
Caused by: java.io.IOException: Cannot fill buffer, EOF reached.
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.readPlain(CipherInputStream.java:107)
	at com.trilead.ssh2.transport.TransportConnection.receiveMessage(TransportConnection.java:251)
	at com.trilead.ssh2.transport.TransportManager.receiveLoop(TransportManager.java:714)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:508)
	... 1 more
2024-09-06 11:14:43,227 (ImplSsh.java:226) DEBUG : Failed to ping the session(localhost:32800_ID1027473) to verify that it is up and running. Session has probably been lost.isConnected failure reason:
java.io.IOException: The ping request failed.
	at com.trilead.ssh2.channel.ChannelManager.requestChannelTrileadPing(ChannelManager.java:638)
	at com.trilead.ssh2.Session.ping(Session.java:388)
	at com.ericsson.commonlibrary.remotecli.ImplSsh.isConnectedImpl(ImplSsh.java:222)
	at com.ericsson.commonlibrary.remotecli.AbstractCli.isConnected(AbstractCli.java:182)
	at com.ericsson.commonlibrary.remotecli.DecoratorCore$Core.isConnected(DecoratorCore.java:118)
	at com.ericsson.commonlibrary.remotecli.Decorator.isConnected(Decorator.java:97)
	at com.ericsson.commonlibrary.remotecli.Decorator.isConnected(Decorator.java:97)
	at com.ericsson.commonlibrary.remotecli.Decorator.isConnected(Decorator.java:97)
	at com.ericsson.commonlibrary.remotecli.DecoratorIsConnectedWithTimeout.lambda$isConnected$0(DecoratorIsConnectedWithTimeout.java:20)
	at com.ericsson.commonlibrary.remotecli.ThreadUtil.lambda$decorateWithMDC$2(ThreadUtil.java:194)
	at com.ericsson.commonlibrary.remotecli.ThreadUtil.lambda$decorateWithThreadNaming$4(ThreadUtil.java:213)
	at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.io.IOException: This SSH2 channel is not open. state: 4
	at com.trilead.ssh2.channel.ChannelManager.ioException(ChannelManager.java:1542)
	at com.trilead.ssh2.channel.ChannelManager.waitForChannelRequestResult(ChannelManager.java:169)
	at com.trilead.ssh2.channel.ChannelManager.requestChannelTrileadPing(ChannelManager.java:631)
	... 14 more
Caused by: java.io.IOException: The connection is being shutdown
	at com.trilead.ssh2.channel.ChannelManager.handleEndMessage(ChannelManager.java:1524)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:541)
	... 1 more
Caused by: java.io.IOException: Cannot fill buffer, EOF reached.
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.readPlain(CipherInputStream.java:107)
	at com.trilead.ssh2.transport.TransportConnection.receiveMessage(TransportConnection.java:251)
	at com.trilead.ssh2.transport.TransportManager.receiveLoop(TransportManager.java:714)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:508)
	... 1 more
2024-09-06 11:14:43,246 (Wire.java:92) DEBUG : http-outgoing-3 << "0[\r][\n]"
2024-09-06 11:14:43,246 (Wire.java:92) DEBUG : http-outgoing-3 << "[\r][\n]"
2024-09-06 11:14:43,246 (InternalExecRuntime.java:255) DEBUG : ep-0000001A: releasing valid endpoint
2024-09-06 11:14:43,246 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-0000001A: releasing endpoint
2024-09-06 11:14:43,246 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-0000001A: connection http-outgoing-3 can be kept alive for 3 MINUTES
2024-09-06 11:14:43,246 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-0000001A: connection released [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,434 (Wire.java:92) DEBUG : http-outgoing-6 << "HTTP/1.1 204 No Content[\r][\n]"
2024-09-06 11:14:43,434 (Wire.java:92) DEBUG : http-outgoing-6 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:43,434 (Wire.java:92) DEBUG : http-outgoing-6 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:43,434 (Wire.java:92) DEBUG : http-outgoing-6 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:43,434 (Wire.java:92) DEBUG : http-outgoing-6 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:43,434 (Wire.java:92) DEBUG : http-outgoing-6 << "Date: Fri, 06 Sep 2024 09:14:43 GMT[\r][\n]"
2024-09-06 11:14:43,434 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,434 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-6 << HTTP/1.1 204 No Content
2024-09-06 11:14:43,434 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Api-Version: 1.43
2024-09-06 11:14:43,434 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Docker-Experimental: false
2024-09-06 11:14:43,434 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Ostype: linux
2024-09-06 11:14:43,434 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:43,435 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Date: Fri, 06 Sep 2024 09:14:43 GMT
2024-09-06 11:14:43,435 (MainClientExec.java:126) DEBUG : ex-00000027: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:43,435 (InternalExecRuntime.java:255) DEBUG : ep-00000026: releasing valid endpoint
2024-09-06 11:14:43,435 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000026: releasing endpoint
2024-09-06 11:14:43,435 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000026: connection http-outgoing-6 can be kept alive for 3 MINUTES
2024-09-06 11:14:43,435 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000026: connection released [route: {}->http://localhost:2375][total available: 2; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,435 (AbstrDockerCmd.java:32) DEBUG : Cmd: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,false
2024-09-06 11:14:43,435 (InspectContainerCmdExec.java:29) DEBUG : GET: DefaultWebTarget{path=[/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json], queryParams={}}
2024-09-06 11:14:43,435 (InternalHttpClient.java:172) DEBUG : ex-00000028: preparing request execution
2024-09-06 11:14:43,436 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:43,436 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:43,436 (ProtocolExec.java:161) DEBUG : ex-00000028: target auth state: UNCHALLENGED
2024-09-06 11:14:43,436 (ProtocolExec.java:167) DEBUG : ex-00000028: proxy auth state: UNCHALLENGED
2024-09-06 11:14:43,436 (ConnectExec.java:116) DEBUG : ex-00000028: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:43,436 (InternalExecRuntime.java:101) DEBUG : ex-00000028: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:43,436 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000028: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 2; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,436 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000028: endpoint leased [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,436 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000028: acquired ep-00000027
2024-09-06 11:14:43,436 (InternalExecRuntime.java:120) DEBUG : ex-00000028: acquired endpoint ep-00000027
2024-09-06 11:14:43,436 (MainClientExec.java:102) DEBUG : ex-00000028: executing GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1
2024-09-06 11:14:43,436 (InternalExecRuntime.java:213) DEBUG : ep-00000027: start execution ex-00000028
2024-09-06 11:14:43,436 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000027: executing exchange ex-00000028 over http-outgoing-6
2024-09-06 11:14:43,436 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-6 >> GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1
2024-09-06 11:14:43,436 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> accept: application/json
2024-09-06 11:14:43,436 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:43,436 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:43,436 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:43,436 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Host: localhost:2375
2024-09-06 11:14:43,436 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Connection: keep-alive
2024-09-06 11:14:43,436 (Wire.java:92) DEBUG : http-outgoing-6 >> "GET /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/json HTTP/1.1[\r][\n]"
2024-09-06 11:14:43,436 (Wire.java:92) DEBUG : http-outgoing-6 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:43,437 (Wire.java:92) DEBUG : http-outgoing-6 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:43,437 (Wire.java:92) DEBUG : http-outgoing-6 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:43,437 (Wire.java:92) DEBUG : http-outgoing-6 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:43,437 (Wire.java:92) DEBUG : http-outgoing-6 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:43,437 (Wire.java:92) DEBUG : http-outgoing-6 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:43,437 (Wire.java:92) DEBUG : http-outgoing-6 >> "[\r][\n]"
2024-09-06 11:14:43,437 (Wire.java:92) DEBUG : http-outgoing-6 << "HTTP/1.1 200 OK[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "Content-Type: application/json[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "Date: Fri, 06 Sep 2024 09:14:43 GMT[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "Transfer-Encoding: chunked[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:92) DEBUG : http-outgoing-6 << "1bdc[\r][\n]"
2024-09-06 11:14:43,438 (Wire.java:106) DEBUG : http-outgoing-6 << "{"Id":"4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a","Created":"2024-09-06T09:14:04.551871089Z","Path":"/usr/sbin/netopeer2-server","Args":["-d","-c","SSH"],"State":{"Status":"exited","Running":false,"Paused":false,"Restarting":false,"OOMKilled":false,"Dead":false,"Pid":0,"ExitCode":137,"Error":"","StartedAt":"2024-09-06T09:14:05.132904143Z","FinishedAt":"2024-09-06T09:14:43.262317332Z"},"Image":"sha256:ca66231883fc221c136e6b2dbe6559aaa411180312c180058f5fc9968fd121fd","ResolvConfPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/resolv.conf","HostnamePath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/hostname","HostsPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/hosts","LogPath":"/var/lib/docker/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a-json.log","Name":"/beautiful_thompson","RestartCount":0,"Driver":"overlay2","Platform":"linux","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","ExecIDs":null,"HostConfig":{"Binds":[],"ContainerIDFile":"","LogConfig":{"Type":"json-file","Config":{}},"NetworkMode":"default","PortBindings":{"830/tcp":[{"HostIp":"","HostPort":""}]},"RestartPolicy":{"Name":"","MaximumRetryCount":0},"AutoRemove":false,"VolumeDriver":"","VolumesFrom":[],"ConsoleSize":[0,0],"CapAdd":null,"CapDrop":null,"CgroupnsMode":"host","Dns":null,"DnsOptions":null,"DnsSearch":null,"ExtraHosts":["host.testcontainers.internal:172.17.0.3"],"GroupAdd":null,"IpcMode":"shareable","Cgroup":"","Links":null,"OomScoreAdj":0,"PidMode":"","Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"SecurityOpt":null,"UTSMode":"","UsernsMode":"","ShmSize":67108864,"Runtime":"runc","Isolation":"","CpuShares":0,"Memory":0,"NanoCpus":0,"CgroupParent":"","BlkioWeight":0,"BlkioWeightDevice":null,"BlkioDeviceReadBps":null,"BlkioDeviceWriteBps":null,"BlkioDeviceReadIOps":null,"BlkioDeviceWriteIOps":null,"CpuPeriod":0,"CpuQuota":0,"CpuRealtimePeriod":0,"CpuRealtimeRuntime":0,"CpusetCpus":"","CpusetMems":"","Devices":null,"DeviceCgroupRules":null,"DeviceRequests":null,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":null,"OomKillDisable":false,"PidsLimit":null,"Ulimits":null,"CpuCount":0,"CpuPercent":0,"IOMaximumIOps":0,"IOMaximumBandwidth":0,"MaskedPaths":["/proc/asound","/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware"],"ReadonlyPaths":["/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"]},"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54-init/diff:/var/lib/docker/overlay2/b04f48a24b07b312e356e15322a910ef8902d721655aa1e422ac090c1e4aebb8/diff:/var/lib/docker/overlay2/a1e978227683a0c74d699bb515a59555a769cfe08431429ac07b0f98fa1212db/diff:/var/lib/docker/overlay2/d81ac57fc7a5b869fe2182c21ef61d52af192008d08b565a004dbbbd355898c8/diff:/var/lib/docker/overlay2/a01fa762a3a0fc1375ef511648f07937d60e5146b3d61e9d3bbb7d7910a14fc2/diff:/var/lib/docker/overlay2/da40b919c95987f2194bcfc0c1803b933e106fe4d197b1b8b7ffadf9e4dc56e2/diff:/var/lib/docker/overlay2/8a1f527bca8deb0c5343427d0171097906522d16801a6e9b5a70437473104ef0/diff:/var/lib/docker/overlay2/667c16009e95a4b7d5c3ff26f916548c75e8c65fd0d0d6a7f2177d6d598844fa/diff:/var/lib/docker/overlay2/2e44d3c7c20a9ea6c4e9c615bdac0198419be54c482ebab6a14fa51649c007ca/diff:/var/lib/docker/overlay2/a2d0b870c0f17eea14ade32620e70e1f3afef83d8493a8a242fe8879a39331a2/diff:/var/lib/docker/overlay2/5a6272e6569eafc40072e8a4d862df0e730021f273b525d9e2e76ab4e5f4f0c6/diff:/var/lib/docker/overlay2/36d11b7f08154e5bc7d4d6a33c6d2abb123dec6a9ed393efe262"
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-6 << HTTP/1.1 200 OK
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Api-Version: 1.43
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Content-Type: application/json
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Docker-Experimental: false
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Ostype: linux
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Date: Fri, 06 Sep 2024 09:14:43 GMT
2024-09-06 11:14:43,438 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Transfer-Encoding: chunked
2024-09-06 11:14:43,438 (MainClientExec.java:126) DEBUG : ex-00000028: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:43,439 (Wire.java:92) DEBUG : http-outgoing-6 << "e72f35d78d1b/diff:/var/lib/docker/overlay2/64fd49538ce471e563fab65c353bfde207894aec03e10b2892d4570545ce7616/diff:/var/lib/docker/overlay2/ba2f7c137723b6123383558618d00df8a59ad7f75e2e905be3b0ee9d9a03e0a3/diff:/var/lib/docker/overlay2/d3f4e0a71673529fb2f7d8a989c9247be31aae483583f5a626625dc628c4e055/diff:/var/lib/docker/overlay2/529699c40f54fb41ef0b1d473e01035d586d153a4d8e80e31913cbc236fdc1ce/diff:/var/lib/docker/overlay2/32eaf33b06ade0250187a3c35d35d59ce448280a6df310cb0ee1a59dde9959b3/diff:/var/lib/docker/overlay2/a932ade4b3512afa0bf7f291816db0b963c499cfeb51ece2a303b2a1af347581/diff:/var/lib/docker/overlay2/02f89e2ac7bbc71b91b5079fed3c86920d73f2983077fead52bf50b66d4d36d4/diff","MergedDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/merged","UpperDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/diff","WorkDir":"/var/lib/docker/overlay2/a02134b8f15ed7be2fcc542ee809d01b9325548f30a109ccc3fa2f3c1c798b54/work"},"Name":"overlay2"},"Mounts":[],"Config":{"Hostname":"4372e1732e49","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"ExposedPorts":{"4334/tcp":{},"4335/tcp":{},"6513/tcp":{},"830/tcp":{}},"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","EDITOR=vim","SSH_LISTEN_XML_CONTENT=<netconf-server xmlns=\"urn:ietf:params:xml:ns:yang:ietf-netconf-server\"><listen><endpoints><endpoint><name>default-ssh</name><ssh><tcp-server-parameters><local-address>0.0.0.0</local-address></tcp-server-parameters><ssh-server-parameters><server-identity><host-key><name>default-key</name><public-key><central-keystore-reference>genkey</central-keystore-reference></public-key></host-key></server-identity><client-authentication><users><user><name>netconf</name><keyboard-interactive xmlns=\"urn:cesnet:libnetconf2-netconf-server\"><use-system-auth /></keyboard-interactive></user></users></client-authentication></ssh-server-parameters></ssh></endpoint></endpoints></listen></netconf-server>"],"Cmd":["/usr/sbin/netopeer2-server","-d","-c","SSH"],"Image":"netopeer2:latest","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":{"org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04","org.testcontainers":"true","org.testcontainers.lang":"java","org.testcontainers.sessionId":"10d076da-69b9-4af4-aabf-8a5e4512253d","org.testcontainers.version":"1.19.0"}},"NetworkSettings":{"Bridge":"","SandboxID":"67cafcad2dfc49e7173d9ffbb086342f1eeb5a032200da63a22c0c342125acc1","HairpinMode":false,"LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"Ports":{},"SandboxKey":"/var/run/docker/netns/67cafcad2dfc","SecondaryIPAddresses":null,"SecondaryIPv6Addresses":null,"EndpointID":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","MacAddress":"","Networks":{"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"NetworkID":"ed8dd862f9191ef18142434a83a30d3fdd1f3a5eb27ad1fc34b3015eefba99e8","EndpointID":"","Gateway":"","IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"MacAddress":"","DriverOpts":null}}}}[\n]"
2024-09-06 11:14:43,440 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,440 (Wire.java:92) DEBUG : http-outgoing-6 << "0[\r][\n]"
2024-09-06 11:14:43,440 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,440 (InternalExecRuntime.java:255) DEBUG : ep-00000027: releasing valid endpoint
2024-09-06 11:14:43,440 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000027: releasing endpoint
2024-09-06 11:14:43,440 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000027: connection http-outgoing-6 can be kept alive for 3 MINUTES
2024-09-06 11:14:43,440 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000027: connection released [route: {}->http://localhost:2375][total available: 2; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,442 (AbstrDockerCmd.java:32) DEBUG : Cmd: 4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a,true,true
2024-09-06 11:14:43,443 (InternalHttpClient.java:172) DEBUG : ex-00000029: preparing request execution
2024-09-06 11:14:43,443 (RequestAddCookies.java:114) DEBUG : Cookie spec selected: strict
2024-09-06 11:14:43,443 (RequestAuthCache.java:76) DEBUG : Auth cache not set in the context
2024-09-06 11:14:43,443 (ProtocolExec.java:161) DEBUG : ex-00000029: target auth state: UNCHALLENGED
2024-09-06 11:14:43,443 (ProtocolExec.java:167) DEBUG : ex-00000029: proxy auth state: UNCHALLENGED
2024-09-06 11:14:43,443 (ConnectExec.java:116) DEBUG : ex-00000029: acquiring connection with route {}->http://localhost:2375
2024-09-06 11:14:43,443 (InternalExecRuntime.java:101) DEBUG : ex-00000029: acquiring endpoint (3 MINUTES)
2024-09-06 11:14:43,443 (PoolingHttpClientConnectionManager.java:258) DEBUG : ex-00000029: endpoint lease request (3 MINUTES) [route: {}->http://localhost:2375][total available: 2; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,443 (PoolingHttpClientConnectionManager.java:283) DEBUG : ex-00000029: endpoint leased [route: {}->http://localhost:2375][total available: 1; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,444 (PoolingHttpClientConnectionManager.java:319) DEBUG : ex-00000029: acquired ep-00000028
2024-09-06 11:14:43,444 (InternalExecRuntime.java:120) DEBUG : ex-00000029: acquired endpoint ep-00000028
2024-09-06 11:14:43,444 (MainClientExec.java:102) DEBUG : ex-00000029: executing DELETE /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a?v=true&force=true HTTP/1.1
2024-09-06 11:14:43,444 (InternalExecRuntime.java:213) DEBUG : ep-00000028: start execution ex-00000029
2024-09-06 11:14:43,444 (PoolingHttpClientConnectionManager.java:594) DEBUG : ep-00000028: executing exchange ex-00000029 over http-outgoing-6
2024-09-06 11:14:43,444 (DefaultManagedHttpClientConnection.java:169) DEBUG : http-outgoing-6 >> DELETE /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a?v=true&force=true HTTP/1.1
2024-09-06 11:14:43,444 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> accept: application/json
2024-09-06 11:14:43,444 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d
2024-09-06 11:14:43,444 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> User-Agent: tc-java/1.19.0
2024-09-06 11:14:43,444 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Accept-Encoding: gzip, x-gzip, deflate
2024-09-06 11:14:43,444 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Host: localhost:2375
2024-09-06 11:14:43,444 (DefaultManagedHttpClientConnection.java:172) DEBUG : http-outgoing-6 >> Connection: keep-alive
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "DELETE /v1.32/containers/4372e1732e49e1549915b3b69793638d2eaf73e50966e0726eb1cd94fa51c23a?v=true&force=true HTTP/1.1[\r][\n]"
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "accept: application/json[\r][\n]"
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "x-tc-sid: 10d076da-69b9-4af4-aabf-8a5e4512253d[\r][\n]"
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "User-Agent: tc-java/1.19.0[\r][\n]"
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "Accept-Encoding: gzip, x-gzip, deflate[\r][\n]"
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "Host: localhost:2375[\r][\n]"
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "Connection: keep-alive[\r][\n]"
2024-09-06 11:14:43,444 (Wire.java:92) DEBUG : http-outgoing-6 >> "[\r][\n]"
2024-09-06 11:14:43,453 (Wire.java:92) DEBUG : http-outgoing-6 << "HTTP/1.1 204 No Content[\r][\n]"
2024-09-06 11:14:43,453 (Wire.java:92) DEBUG : http-outgoing-6 << "Api-Version: 1.43[\r][\n]"
2024-09-06 11:14:43,453 (Wire.java:92) DEBUG : http-outgoing-6 << "Docker-Experimental: false[\r][\n]"
2024-09-06 11:14:43,453 (Wire.java:92) DEBUG : http-outgoing-6 << "Ostype: linux[\r][\n]"
2024-09-06 11:14:43,453 (Wire.java:92) DEBUG : http-outgoing-6 << "Server: Docker/24.0.6 (linux)[\r][\n]"
2024-09-06 11:14:43,453 (Wire.java:92) DEBUG : http-outgoing-6 << "Date: Fri, 06 Sep 2024 09:14:43 GMT[\r][\n]"
2024-09-06 11:14:43,453 (Wire.java:92) DEBUG : http-outgoing-6 << "[\r][\n]"
2024-09-06 11:14:43,453 (DefaultManagedHttpClientConnection.java:158) DEBUG : http-outgoing-6 << HTTP/1.1 204 No Content
2024-09-06 11:14:43,453 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Api-Version: 1.43
2024-09-06 11:14:43,453 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Docker-Experimental: false
2024-09-06 11:14:43,453 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Ostype: linux
2024-09-06 11:14:43,453 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Server: Docker/24.0.6 (linux)
2024-09-06 11:14:43,453 (DefaultManagedHttpClientConnection.java:161) DEBUG : http-outgoing-6 << Date: Fri, 06 Sep 2024 09:14:43 GMT
2024-09-06 11:14:43,453 (MainClientExec.java:126) DEBUG : ex-00000029: connection can be kept alive for 3 MINUTES
2024-09-06 11:14:43,453 (InternalExecRuntime.java:255) DEBUG : ep-00000028: releasing valid endpoint
2024-09-06 11:14:43,453 (PoolingHttpClientConnectionManager.java:349) DEBUG : ep-00000028: releasing endpoint
2024-09-06 11:14:43,453 (PoolingHttpClientConnectionManager.java:368) DEBUG : ep-00000028: connection http-outgoing-6 can be kept alive for 3 MINUTES
2024-09-06 11:14:43,454 (PoolingHttpClientConnectionManager.java:381) DEBUG : ep-00000028: connection released [route: {}->http://localhost:2375][total available: 2; route allocated: 2 of 2147483647; total allocated: 2 of 2147483647]
2024-09-06 11:14:43,454 (ResourceReaper.java:219) DEBUG : Removed container and associated volume(s): netopeer2:latest

===============================================
Default Suite
Total tests run: 1, Passes: 0, Failures: 1, Skips: 0
===============================================


Follow-Ups:
RE: Support for SSH_MSG_CHANNEL_REQUEST that is unknownMikael Petterson <mikael.petterson@xxxxxxxxxxxx>
References:
Support for SSH_MSG_CHANNEL_REQUEST that is unknownMikael Petterson <mikael.petterson@xxxxxxxxxxxx>
Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknownJakub Jelen <jjelen@xxxxxxxxxx>
Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknownJakub Jelen <jjelen@xxxxxxxxxx>
RE: Support for SSH_MSG_CHANNEL_REQUEST that is unknownMikael Petterson <mikael.petterson@xxxxxxxxxxxx>
RE: Support for SSH_MSG_CHANNEL_REQUEST that is unknownMikael Petterson <mikael.petterson@xxxxxxxxxxxx>
Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknownJakub Jelen <jjelen@xxxxxxxxxx>
RE: Support for SSH_MSG_CHANNEL_REQUEST that is unknownMikael Petterson <mikael.petterson@xxxxxxxxxxxx>
Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknownJakub Jelen <jjelen@xxxxxxxxxx>
Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknownMichal Vasko <mvasko@xxxxxxxxx>
Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknownJakub Jelen <jjelen@xxxxxxxxxx>
RE: Support for SSH_MSG_CHANNEL_REQUEST that is unknownMikael Petterson <mikael.petterson@xxxxxxxxxxxx>
Re: Support for SSH_MSG_CHANNEL_REQUEST that is unknownJakub Jelen <jjelen@xxxxxxxxxx>
Archive administrator: postmaster@lists.cynapses.org