Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Build vs image timeout #11620

Closed
xumia opened this issue Aug 4, 2022 · 2 comments
Closed

Build vs image timeout #11620

xumia opened this issue Aug 4, 2022 · 2 comments
Assignees
Labels
Triaged this issue has been triaged

Comments

@xumia
Copy link
Collaborator

xumia commented Aug 4, 2022

Description

The vm has already started successfully, and prompt the "sonic login:" message, but the check_install.py is still waiting for it.

2022-08-04T09:23:42.8905416Z Debian GNU/Linux 11 sonic ttyS0
2022-08-04T09:23:42.8905787Z
2022-08-04T09:23:42.8906200Z [ 23.154924] rc.local[348]: + [ -n ]
2022-08-04T09:23:42.8906808Z sonic [ 23.206462] rc.local[348]: + [ -n x86_64-kvm_x86_64-r0 ]
2022-08-04T09:23:42.8907426Z login: [ 23.265424] rc.local[348]: + platform=x86_64-kvm_x86_64-r0
2022-08-04T09:23:42.8908289Z [ 23.325393] rc.local[348]: + [ -d /host/old_config ]

2022-08-04T09:23:42.8900452Z [   22.587784] rc.local[348]: + [ 0 = 0 ]
2022-08-04T09:23:42.8901296Z [   22.653463] rc.local[348]: + sed -i s|\-\-keep\-baud .* %I| 115200 %I|g /lib/systemd/system/[email protected]
2022-08-04T09:23:42.8901889Z [   22.773574] rc.local[348]: + systemctl daemon-reload
2022-08-04T09:23:42.8903205Z [   22.843848] rc.local[348]: + [ -f /host/image-master-11447.130796-76ae725ca/platform/firsttime ]
2022-08-04T09:23:42.8903918Z [   22.987651] rc.local[348]: + echo First boot detected. Performing first boot tasks...
2022-08-04T09:23:42.8904836Z [   23.073868] rc.local[348]: First boot detected. Performing first boot tasks...
2022-08-04T09:23:42.8905077Z 
2022-08-04T09:23:42.8905164Z 
2022-08-04T09:23:42.8905416Z Debian GNU/Linux 11 sonic ttyS0
2022-08-04T09:23:42.8905787Z 
2022-08-04T09:23:42.8906200Z [   23.154924] rc.local[348]: + [ -n  ]
2022-08-04T09:23:42.8906808Z sonic [   23.206462] rc.local[348]: + [ -n x86_64-kvm_x86_64-r0 ]
2022-08-04T09:23:42.8907426Z login: [   23.265424] rc.local[348]: + platform=x86_64-kvm_x86_64-r0
2022-08-04T09:23:42.8908289Z [   23.325393] rc.local[348]: + [ -d /host/old_config ]
2022-08-04T09:23:42.8909202Z [   23.377605] rc.local[348]: + [ -f /host/minigraph.xml ]
2022-08-04T09:23:42.8909623Z [   23.428046] rc.local[348]: + [ -n  ]
2022-08-04T09:23:42.8910203Z [   23.467036] rc.local[348]: + touch /tmp/pending_config_initialization
2022-08-04T09:23:42.8910591Z [   23.525363] rc.local[348]: + touch /tmp/notify_firstboot_to_platform
2022-08-04T09:23:42.8911368Z [   23.581404] rc.local[348]: + [ ! -d /host/reboot-cause/platform ]
2022-08-04T09:23:42.8911901Z [   23.638691] rc.local[348]: + mkdir -p /host/reboot-cause/platform
2022-08-04T09:23:42.8912624Z [   23.684432] rc.local[348]: + [ -d /host/image-master-11447.130796-76ae725ca/platform/x86_64-kvm_x86_64-r0 ]
2022-08-04T09:23:42.8913034Z [   23.747779] rc.local[348]: + sync
2022-08-04T09:23:42.8913667Z [   23.777573] rc.local[348]: + [ -n x86_64-kvm_x86_64-r0 ]
2022-08-04T09:23:42.8914291Z [   23.821412] rc.local[348]: + [ -n  ]
2022-08-04T09:23:42.8914793Z [   23.854879] rc.local[348]: + mkdir -p /var/platform
2022-08-04T09:23:42.8915449Z [   23.895074] rc.local[348]: + [ -f /etc/default/kdump-tools ]
2022-08-04T09:23:42.8915856Z [   23.937529] rc.local[348]: + firsttime_exit
2022-08-04T09:23:42.8916442Z [   23.969201] rc.local[348]: + rm -rf /host/image-master-11447.130796-76ae725ca/platform/firsttime
2022-08-04T09:23:42.8916822Z [   24.031359] rc.local[348]: + exit 0
2022-08-04T09:23:42.8917155Z Traceback (most recent call last):
2022-08-04T09:23:42.8917458Z   File "/sonic/./check_install.py", line 64, in <module>
2022-08-04T09:23:42.8917770Z     main()
2022-08-04T09:23:42.8918024Z   File "/sonic/./check_install.py", line 41, in main
2022-08-04T09:23:42.8918412Z     i = p.expect([login_prompt, passwd_prompt, cmd_prompt])
2022-08-04T09:23:42.8918982Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/spawnbase.py", line 343, in expect
2022-08-04T09:23:42.8919431Z     return self.expect_list(compiled_pattern_list,
2022-08-04T09:23:42.8919998Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/spawnbase.py", line 372, in expect_list
2022-08-04T09:23:42.8920452Z     return exp.expect_loop(timeout)
2022-08-04T09:23:42.8920988Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/expect.py", line 181, in expect_loop
2022-08-04T09:23:42.8921606Z     return self.timeout(e)
2022-08-04T09:23:42.8922311Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/expect.py", line 144, in timeout
2022-08-04T09:23:42.8922688Z     raise exc
2022-08-04T09:23:42.8922947Z pexpect.exceptions.TIMEOUT: Timeout exceeded.
2022-08-04T09:23:42.8923271Z <pexpect.pty_spawn.spawn object at 0x7f6df3ffeaf0>
2022-08-04T09:23:42.8923618Z command: /usr/bin/telnet
2022-08-04T09:23:42.8924044Z args: [b'/usr/bin/telnet', b'127.0.0.1', b'9000']
2022-08-04T09:23:42.8924772Z buffer (last 100 chars): 'ost/image-master-11447.130796-76ae725ca/platform/firsttime\r\n[   24.031359] rc.local[348]: + exit 0\r\n'
2022-08-04T09:23:42.8925713Z before (last 100 chars): 'ost/image-master-11447.130796-76ae725ca/platform/firsttime\r\n[   24.031359] rc.local[348]: + exit 0\r\n'
2022-08-04T09:23:42.8926342Z after: <class 'pexpect.exceptions.TIMEOUT'>
2022-08-04T09:23:42.8926599Z match: None
2022-08-04T09:23:42.8926866Z match_index: None

Steps to reproduce the issue:

Describe the results you received:

Describe the results you expected:

Output of show version:

(paste your output here)

Output of show techsupport:

(paste your output here or download and attach the file here )

Additional information you deem important (e.g. issue happens only occasionally):

@xumia xumia self-assigned this Aug 4, 2022
@xumia
Copy link
Collaborator Author

xumia commented Aug 10, 2022

show version timeout:
https://dev.azure.com/mssonic/build/_build/results?buildId=132681&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f&s=6884a131-87da-5381-61f3-d7acc3b91d76

2022-08-09T05:48:05.9123032Z Build Date: 2018-11-17T04:18+00:00
2022-08-09T05:48:05.9123286Z 
2022-08-09T05:48:05.9123564Z Info: Mounting kernel filesystems... done.
2022-08-09T05:48:05.9123869Z Info: BIOS mode: legacy
2022-08-09T05:48:05.9124189Z Running demonstration platform init pre_arch routines...
2022-08-09T05:48:05.9124584Z Running demonstration platform init post_arch routines...
2022-08-09T05:48:05.9124987Z network_driver: Running demonstration pre_init routines...
2022-08-09T05:48:05.9125355Z network_driver: Running ASIC/SDK init routines...
2022-08-09T05:48:05.9125742Z network_driver: Running demonstration post_init routines...
2022-08-09T05:48:05.9126134Z Info: Using eth0 MAC address: 52:54:00:12:34:56
2022-08-09T05:48:05.9126463Z Info: eth0:  Checking link... up.
2022-08-09T05:48:05.9126779Z Info: Trying DHCPv4 on interface: eth0
2022-08-09T05:48:05.9127124Z ONIE: Using DHCPv4 addr: eth0: 10.0.2.15 / 255.255.255.0
2022-08-09T05:48:05.9127533Z Starting: klogd... done.
2022-08-09T05:48:05.9127837Z Starting: dropbear ssh daemon... done.
2022-08-09T05:48:05.9128127Z Starting: telnetd... done.
2022-08-09T05:48:05.9128464Z discover: ONIE embed mode detected.  Running updater.
2022-08-09T05:48:05.9128794Z Starting: discover... done.
2022-08-09T05:48:05.9128923Z 
2022-08-09T05:48:05.9129252Z Please press Enter to activate this console. Info: eth0:  Checking link... up.
2022-08-09T05:48:05.9129636Z Info: Trying DHCPv4 on interface: eth0
2022-08-09T05:48:05.9129994Z ONIE: Using DHCPv4 addr: eth0: 10.0.2.15 / 255.255.255.0
2022-08-09T05:48:05.9130347Z ONIE: Starting ONIE Service Discovery
2022-08-09T05:48:05.9130843Z Info: Found static url: file:///lib/onie/onie-updater
2022-08-09T05:48:05.9131379Z ONIE: Executing installer: file:///lib/onie/onie-updater
2022-08-09T05:48:05.9131727Z Verifying image checksum ... OK.
2022-08-09T05:48:05.9132016Z Preparing image archive ... OK.
2022-08-09T05:48:05.9132332Z Success: test_install_sharing mechanism
2022-08-09T05:48:05.9132798Z ONIE: Version       : master-201811170418
2022-08-09T05:48:05.9133116Z ONIE: Architecture  : x86_64
2022-08-09T05:48:05.9133417Z ONIE: Machine       : kvm_x86_64
2022-08-09T05:48:05.9133684Z ONIE: Machine Rev   : 0
2022-08-09T05:48:05.9133955Z ONIE: Config Version: 1
2022-08-09T05:48:05.9134420Z ONIE: Build Date    : 2018-11-17T04:18+00:00
2022-08-09T05:48:05.9134742Z Installing ONIE on: /dev/vda
2022-08-09T05:48:05.9135018Z Pre installation hook
2022-08-09T05:48:05.9135272Z Post installation hook
2022-08-09T05:48:05.9135771Z ONIE: Success: Firmware update URL: file:///lib/onie/onie-updater 
2022-08-09T05:48:05.9136342Z ONIE: Success: Firmware update version: master-201811170418 
2022-08-09T05:48:05.9136671Z ONIE: Rebooting...
2022-08-09T05:48:05.9136959Z discover: ONIE embed mode detected.
2022-08-09T05:48:05.9137536Z Stopping: discover...start-stop-daemon: warning: killing process 697: No such process
2022-08-09T05:48:05.9137887Z  done.
2022-08-09T05:48:05.9138155Z Stopping: dropbear ssh daemon... done.
2022-08-09T05:48:05.9138464Z Stopping: telnetd... done.
2022-08-09T05:48:05.9138734Z Stopping: klogd... done.
2022-08-09T05:48:05.9139020Z Stopping: syslogd... done.
2022-08-09T05:48:05.9139306Z Info: Unmounting kernel filesystems
2022-08-09T05:48:05.9139766Z umount: can't unmount /: Invalid argument
2022-08-09T05:48:05.9139918Z 
2022-08-09T05:48:05.9140163Z The system is going down NOW!
2022-08-09T05:48:05.9140293Z 
2022-08-09T05:48:05.9140535Z Sent SIGTERM to all processes
2022-08-09T05:48:05.9140664Z 
2022-08-09T05:48:05.9141067Z Sent SIGKILL to all processes
2022-08-09T05:48:05.9141199Z 
2022-08-09T05:48:05.9141434Z Requesting system reboot
2022-08-09T05:48:05.9141700Z reboot: Restarting system
2022-08-09T05:48:05.9142198Z �[H�[J�[1;1H�[?25l�[m�[H�[J�[1;1H�[2;30HGNU GRUB  version 2.02
2022-08-09T05:48:05.9142372Z 
2022-08-09T05:48:05.9142454Z 
2022-08-09T05:48:05.9143814Z �[m�[4;2H+----------------------------------------------------------------------------+�[5;2H|�[5;79H|�[6;2H|�[6;79H|�[7;2H|�[7;79H|�[8;2H|�[8;79H|�[9;2H|�[9;79H|�[10;2H|�[10;79H|�[11;2H|�[11;79H|�[12;2H|�[12;79H|�[13;2H|�[13;79H|�[14;2H|�[14;79H|�[15;2H|�[15;79H|�[16;2H|�[16;79H|�[17;2H+----------------------------------------------------------------------------+�[m�[18;2H�[19;2H�[m     Use the ^ and v keys to select which entry is highlighted.          
2022-08-09T05:48:05.9144673Z 
2022-08-09T05:48:05.9145142Z       Press enter to boot the selected OS, `e' to edit the commands       
2022-08-09T05:48:05.9145348Z 
2022-08-09T05:48:05.9147822Z       before booting or `c' for a command-line.                           �[5;80H �[7m�[5;3H*ONIE: Install OS                                                           �[m�[5;78H�[m�[m�[6;3H ONIE: Rescue                                                               �[m�[6;78H�[m�[m�[7;3H ONIE: Uninstall OS                                                         �[m�[7;78H�[m�[m�[8;3H ONIE: Update ONIE                                                          �[m�[8;78H�[m�[m�[9;3H ONIE: Embed ONIE                                                           �[m�[9;78H�[m�[m�[10;3H                                                                            �[m�[10;78H�[m�[m�[11;3H                                                                            �[m�[11;78H�[m�[m�[12;3H                                                                            �[m�[12;78H�[m�[m�[13;3H                                                                            �[m�[13;78H�[m�[m�[14;3H                                                                            �[m�[14;78H�[m�[m�[15;3H                                                                            �[m�[15;78H�[m�[m�[16;3H                                                                            �[m�[16;78H�[m�[16;80H �[5;78H�[22;1H   The highlighted entry will be executed 
2022-08-09T05:48:05.9149761Z automatically in 5s.                 �[5;78H�[22;1H                                                                               �[23;1H                                                                               �[5;78H�[?25h�[H�[J�[1;1H�[H�[J�[1;1HONIE: OS Install Mode ...
2022-08-09T05:48:05.9150103Z 
2022-08-09T05:48:05.9150483Z Platform  : x86_64-kvm_x86_64-r0
2022-08-09T05:48:05.9150639Z 
2022-08-09T05:48:05.9151006Z Version   : master-201811170418
2022-08-09T05:48:05.9151157Z 
2022-08-09T05:48:05.9151547Z Build Date: 2018-11-17T04:18+00:00
2022-08-09T05:48:05.9151705Z 
2022-08-09T05:48:05.9151977Z Info: Mounting kernel filesystems... done.
2022-08-09T05:48:05.9152462Z Info: Mounting ONIE-BOOT on /mnt/onie-boot ...
2022-08-09T05:48:05.9152767Z Info: BIOS mode: legacy
2022-08-09T05:48:05.9153101Z Running demonstration platform init pre_arch routines...
2022-08-09T05:48:05.9153496Z Running demonstration platform init post_arch routines...
2022-08-09T05:48:05.9153856Z Info: Making NOS install boot mode persistent.
2022-08-09T05:48:05.9154309Z Installing for i386-pc platform.
2022-08-09T05:48:05.9154638Z Installation finished. No error reported.
2022-08-09T05:48:05.9154997Z network_driver: Running demonstration pre_init routines...
2022-08-09T05:48:05.9155379Z network_driver: Running ASIC/SDK init routines...
2022-08-09T05:48:05.9155754Z network_driver: Running demonstration post_init routines...
2022-08-09T05:48:05.9156146Z Info: Using eth0 MAC address: 52:54:00:12:34:56
2022-08-09T05:48:05.9156486Z Info: eth0:  Checking link... up.
2022-08-09T05:48:05.9156787Z Info: Trying DHCPv4 on interface: eth0
2022-08-09T05:48:05.9157144Z ONIE: Using DHCPv4 addr: eth0: 10.0.2.15 / 255.255.255.0
2022-08-09T05:48:05.9157476Z Starting: klogd... done.
2022-08-09T05:48:05.9157764Z Starting: dropbear ssh daemon... done.
2022-08-09T05:48:05.9158067Z Starting: telnetd... done.
2022-08-09T05:48:05.9158399Z discover: installer mode detected.  Running installer.
2022-08-09T05:48:05.9158719Z Starting: discover... done.
2022-08-09T05:48:05.9158847Z 
2022-08-09T05:48:05.9159171Z Please press Enter to activate this console. Info: eth0:  Checking link... up.
2022-08-09T05:48:05.9159564Z Info: Trying DHCPv4 on interface: eth0
2022-08-09T05:48:05.9159908Z ONIE: Using DHCPv4 addr: eth0: 10.0.2.15 / 255.255.255.0
2022-08-09T05:48:05.9160343Z ONIE: Starting ONIE Service Discovery
2022-08-09T05:48:05.9160902Z Info: Attempting file://dev/vdb/onie-installer-x86_64-kvm_x86_64-r0 ...
2022-08-09T05:48:05.9161519Z Info: Attempting file://dev/vdb/onie-installer-x86_64-kvm_x86_64-r0.bin ...
2022-08-09T05:48:05.9162135Z Info: Attempting file://dev/vdb/onie-installer-x86_64-kvm_x86_64 ...
2022-08-09T05:48:05.9162748Z Info: Attempting file://dev/vdb/onie-installer-x86_64-kvm_x86_64.bin ...
2022-08-09T05:48:05.9163323Z Info: Attempting file://dev/vdb/onie-installer-kvm_x86_64 ...
2022-08-09T05:48:05.9163935Z Info: Attempting file://dev/vdb/onie-installer-kvm_x86_64.bin ...
2022-08-09T05:48:05.9164516Z Info: Attempting file://dev/vdb/onie-installer-x86_64-qemu ...
2022-08-09T05:48:05.9165081Z Info: Attempting file://dev/vdb/onie-installer-x86_64-qemu.bin ...
2022-08-09T05:48:05.9165737Z Info: Attempting file://dev/vdb/onie-installer-x86_64 ...
2022-08-09T05:48:05.9166293Z Info: Attempting file://dev/vdb/onie-installer-x86_64.bin ...
2022-08-09T05:48:05.9166818Z Info: Attempting file://dev/vdb/onie-installer ...
2022-08-09T05:48:05.9167339Z Info: Attempting file://dev/vdb/onie-installer.bin ...
2022-08-09T05:48:05.9167888Z ONIE: Executing installer: file://dev/vdb/onie-installer.bin
2022-08-09T05:48:05.9168236Z Verifying image checksum ... OK.
2022-08-09T05:48:05.9168539Z Preparing image archive ... OK.
2022-08-09T05:48:05.9168812Z Installing SONiC in ONIE
2022-08-09T05:48:05.9169250Z ONIE Installer: platform: x86_64-vs-r0
2022-08-09T05:48:05.9169713Z onie_platform: x86_64-kvm_x86_64-r0
2022-08-09T05:48:05.9170004Z Partition #1 is in use.
2022-08-09T05:48:05.9170275Z Partition #2 is in use.
2022-08-09T05:48:05.9170549Z Partition #3 is available
2022-08-09T05:48:05.9170987Z Creating new SONiC-OS partition /dev/vda3 ...
2022-08-09T05:48:05.9171354Z Could not create partition 3 from 268288 to 67377151
2022-08-09T05:48:05.9171865Z Unable to set partition 3's name to 'SONiC-OS'!
2022-08-09T05:48:05.9172197Z Error encountered; not saving changes.
2022-08-09T05:48:05.9172665Z Warning: The first trial of creating partition failed, trying the largest aligned available block of sectors on the disk
2022-08-09T05:48:05.9173160Z Warning: The kernel is still using the old partition table.
2022-08-09T05:48:05.9173516Z The new table will be used at the next reboot.
2022-08-09T05:48:05.9173854Z The operation has completed successfully.
2022-08-09T05:48:05.9174287Z mke2fs 1.42.13 (17-May-2015)
2022-08-09T05:48:05.9174647Z Creating filesystem with 4160763 4k blocks and 1040384 inodes
2022-08-09T05:48:05.9175202Z Filesystem UUID: 57ed26ee-0469-4e4a-8c97-f89d2a734bea
2022-08-09T05:48:05.9175551Z Superblock backups stored on blocks: 
2022-08-09T05:48:05.9175931Z 	32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
2022-08-09T05:48:05.9176266Z 	4096000
2022-08-09T05:48:05.9176363Z 
2022-08-09T05:48:05.9176821Z Allocating group tables:   0/127�������       �������done                            
2022-08-09T05:48:05.9177342Z Writing inode tables:   0/127�������       �������done                            
2022-08-09T05:48:05.9177696Z Creating journal (32768 blocks): done
2022-08-09T05:48:05.9178259Z Writing superblocks and filesystem accounting information:   0/127�������       �������done
2022-08-09T05:48:05.9178473Z 
2022-08-09T05:48:05.9178936Z Installing SONiC to /tmp/tmp.QpCHY6/image-202205.132681-f16e7ad8e
2022-08-09T05:48:05.9179284Z Archive:  fs.zip
2022-08-09T05:48:05.9179539Z    creating: boot/
2022-08-09T05:48:05.9179973Z   inflating: boot/initrd.img-5.10.0-12-2-amd64
2022-08-09T05:48:05.9180471Z   inflating: boot/vmlinuz-5.10.0-12-2-amd64
2022-08-09T05:48:05.9181177Z   inflating: boot/System.map-5.10.0-12-2-amd64
2022-08-09T05:48:05.9181719Z   inflating: boot/config-5.10.0-12-2-amd64
2022-08-09T05:48:05.9182037Z   inflating: fs.squashfs
2022-08-09T05:48:05.9182513Z ONIE: Unable to find 'Part Number' TLV in EEPROM data.
2022-08-09T05:48:05.9183086Z Success: Support tarball created: /tmp/onie-support-kvm_x86_64.tar.bz2
2022-08-09T05:48:05.9183744Z Installing for i386-pc platform.
2022-08-09T05:48:05.9184074Z Installation finished. No error reported.
2022-08-09T05:48:05.9184383Z Switch CPU vendor is: GenuineIntel
2022-08-09T05:48:05.9184692Z Switch CPU cstates are: disabled
2022-08-09T05:48:05.9184965Z EXTRA_CMDLINE_LINUX=
2022-08-09T05:48:05.9185423Z Installed SONiC base image SONiC-OS successfully
2022-08-09T05:48:05.9185970Z ONIE: NOS install successful: file://dev/vdb/onie-installer.bin
2022-08-09T05:48:05.9186300Z ONIE: Rebooting...
2022-08-09T05:48:05.9186587Z discover: installer mode detected.
2022-08-09T05:48:05.9187160Z Stopping: discover...start-stop-daemon: warning: killing process 391: No such process
2022-08-09T05:48:05.9187508Z  done.
2022-08-09T05:48:05.9187775Z Stopping: dropbear ssh daemon... done.
2022-08-09T05:48:05.9188080Z Stopping: telnetd... done.
2022-08-09T05:48:05.9188446Z Stopping: klogd... done.
2022-08-09T05:48:05.9188730Z Stopping: syslogd... done.
2022-08-09T05:48:05.9189015Z Info: Unmounting kernel filesystems
2022-08-09T05:48:05.9189489Z umount: can't unmount /: Invalid argument
2022-08-09T05:48:05.9189642Z 
2022-08-09T05:48:05.9189893Z The system is going down NOW!
2022-08-09T05:48:05.9190022Z 
2022-08-09T05:48:05.9190263Z Sent SIGTERM to all processes
2022-08-09T05:48:05.9190392Z 
2022-08-09T05:48:05.9190633Z Sent SIGKILL to all processes
2022-08-09T05:48:05.9190763Z 
2022-08-09T05:48:05.9190997Z Requesting system reboot
2022-08-09T05:48:05.9191263Z reboot: Restarting system
2022-08-09T05:48:05.9191749Z �[H�[J�[1;1H�[?25l�[m�[H�[J�[1;1H�[2;30HGNU GRUB  version 2.02
2022-08-09T05:48:05.9191923Z 
2022-08-09T05:48:05.9192003Z 
2022-08-09T05:48:05.9193371Z �[m�[4;2H+----------------------------------------------------------------------------+�[5;2H|�[5;79H|�[6;2H|�[6;79H|�[7;2H|�[7;79H|�[8;2H|�[8;79H|�[9;2H|�[9;79H|�[10;2H|�[10;79H|�[11;2H|�[11;79H|�[12;2H|�[12;79H|�[13;2H|�[13;79H|�[14;2H|�[14;79H|�[15;2H|�[15;79H|�[16;2H|�[16;79H|�[17;2H+----------------------------------------------------------------------------+�[m�[18;2H�[19;2H�[m     Use the ^ and v keys to select which entry is highlighted.          
2022-08-09T05:48:05.9194133Z 
2022-08-09T05:48:05.9194589Z       Press enter to boot the selected OS, `e' to edit the commands       
2022-08-09T05:48:05.9194794Z 
2022-08-09T05:48:05.9197248Z       before booting or `c' for a command-line.                           �[5;80H �[7m�[5;3H*SONiC-OS-202205.132681-f16e7ad8e                                           �[m�[5;78H�[m�[m�[6;3H ONIE                                                                       �[m�[6;78H�[m�[m�[7;3H                                                                            �[m�[7;78H�[m�[m�[8;3H                                                                            �[m�[8;78H�[m�[m�[9;3H                                                                            �[m�[9;78H�[m�[m�[10;3H                                                                            �[m�[10;78H�[m�[m�[11;3H                                                                            �[m�[11;78H�[m�[m�[12;3H                                                                            �[m�[12;78H�[m�[m�[13;3H                                                                            �[m�[13;78H�[m�[m�[14;3H                                                                            �[m�[14;78H�[m�[m�[15;3H                                                                            �[m�[15;78H�[m�[m�[16;3H                                                                            �[m�[16;78H�[m�[16;80H �[5;78H�[22;1H   The highlighted entry will be executed + kill 1087687
2022-08-09T05:48:05.9198640Z + echo 'Booting up SONiC'
2022-08-09T05:48:05.9198917Z Booting up SONiC
2022-08-09T05:48:05.9199157Z + kvm_pid=1087733
2022-08-09T05:48:05.9199404Z + sleep 2.0
2022-08-09T05:48:05.9200465Z + /usr/bin/kvm -m 8192 -name onie -device e1000,netdev=onienet -netdev user,id=onienet,hostfwd=:0.0.0.0:3041-:22 -vnc 0.0.0.0:0 -vga std -snapshot -drive file=target/sonic-vs.img,media=disk,if=virtio,index=0 -serial telnet:127.0.0.1:9000,server
2022-08-09T05:48:05.9201447Z + '[' -d /proc/1087733 ']'
2022-08-09T05:48:05.9201884Z + echo 'to kill kvm:  sudo kill 1087733'
2022-08-09T05:48:05.9202204Z to kill kvm:  sudo kill 1087733
2022-08-09T05:48:05.9202674Z + ./check_install.py -u admin -P YourPaSsWoRd -p 9000
2022-08-09T05:48:05.9203001Z Trying 127.0.0.1...
2022-08-09T05:48:05.9203272Z Connected to 127.0.0.1.
2022-08-09T05:48:05.9203657Z Escape character is '^]'.
2022-08-09T05:48:05.9204149Z �[H�[J�[1;1H�[?25l�[m�[H�[J�[1;1H�[2;30HGNU GRUB  version 2.02
2022-08-09T05:48:05.9204323Z 
2022-08-09T05:48:05.9204417Z 
2022-08-09T05:48:05.9205771Z �[m�[4;2H+----------------------------------------------------------------------------+�[5;2H|�[5;79H|�[6;2H|�[6;79H|�[7;2H|�[7;79H|�[8;2H|�[8;79H|�[9;2H|�[9;79H|�[10;2H|�[10;79H|�[11;2H|�[11;79H|�[12;2H|�[12;79H|�[13;2H|�[13;79H|�[14;2H|�[14;79H|�[15;2H|�[15;79H|�[16;2H|�[16;79H|�[17;2H+----------------------------------------------------------------------------+�[m�[18;2H�[19;2H�[m     Use the ^ and v keys to select which entry is highlighted.          
2022-08-09T05:48:05.9206626Z 
2022-08-09T05:48:05.9207094Z       Press enter to boot the selected OS, `e' to edit the commands       
2022-08-09T05:48:05.9207300Z 
2022-08-09T05:48:05.9209703Z       before booting or `c' for a command-line.                           �[5;80H �[7m�[5;3H*SONiC-OS-202205.132681-f16e7ad8e                                           �[m�[5;78H�[m�[m�[6;3H ONIE                                                                       �[m�[6;78H�[m�[m�[7;3H                                                                            �[m�[7;78H�[m�[m�[8;3H                                                                            �[m�[8;78H�[m�[m�[9;3H                                                                            �[m�[9;78H�[m�[m�[10;3H                                                                            �[m�[10;78H�[m�[m�[11;3H                                                                            �[m�[11;78H�[m�[m�[12;3H                                                                            �[m�[12;78H�[m�[m�[13;3H                                                                            �[m�[13;78H�[m�[m�[14;3H                                                                            �[m�[14;78H�[m�[m�[15;3H                                                                            �[m�[15;78H�[m�[m�[16;3H                                                                            �[m�[16;78H�[m�[16;80H �[5;78H�[22;1H   The highlighted entry will be executed 
2022-08-09T05:48:05.9211503Z automatically in 5s.                 �[5;78H�[22;1H                                                                               �[23;1H                                                                               �[5;78H�[?25h�[H�[J�[1;1H�[H�[J�[1;1HLoading SONiC-OS OS kernel ...
2022-08-09T05:48:05.9211857Z 
2022-08-09T05:48:05.9212257Z Loading SONiC-OS OS initial ramdisk ...
2022-08-09T05:48:05.9212413Z 
2022-08-09T05:48:05.9212776Z tune2fs 1.46.2 (28-Feb-2021)
2022-08-09T05:48:05.9213118Z Setting reserved blocks percentage to 0% (0 blocks)
2022-08-09T05:48:05.9213521Z Setting reserved blocks count to 0
2022-08-09T05:48:05.9213864Z [    7.950752] rc.local[358]: + cat /etc/sonic/sonic_version.yml
2022-08-09T05:48:05.9214250Z [    7.977968] rc.local[359]: + grep build_version
2022-08-09T05:48:05.9214790Z [    8.040823] rc.local[365]: + sed -e s/build_version: //g;s/'//g
2022-08-09T05:48:05.9215369Z [    8.154459] rc.local[355]: + SONIC_VERSION=202205.132681-f16e7ad8e
2022-08-09T05:48:05.9216064Z [    8.228937] rc.local[355]: + FIRST_BOOT_FILE=/host/image-202205.132681-f16e7ad8e/platform/firsttime
2022-08-09T05:48:05.9216798Z [    8.803008] rc.local[355]: + SONIC_CONFIG_DIR=/host/image-202205.132681-f16e7ad8e/sonic-config
2022-08-09T05:48:05.9217565Z [    8.915925] rc.local[355]: + SONIC_ENV_FILE=/host/image-202205.132681-f16e7ad8e/sonic-config/sonic-environment
2022-08-09T05:48:05.9218488Z [    9.015520] rc.local[355]: + [ -d /host/image-202205.132681-f16e7ad8e/sonic-config -a -f /host/image-202205.132681-f16e7ad8e/sonic-config/sonic-environment ]
2022-08-09T05:48:05.9219390Z [    9.089091] rc.local[355]: + logger SONiC version 202205.132681-f16e7ad8e starting up...
2022-08-09T05:48:05.9219829Z [    9.166358] rc.local[355]: + grub_installation_needed=
2022-08-09T05:48:05.9220364Z [    9.189143] rc.local[355]: + [ ! -e /host/machine.conf ]
2022-08-09T05:48:05.9220736Z [    9.213523] rc.local[355]: + . /host/machine.conf
2022-08-09T05:48:05.9221232Z [    9.229309] rc.local[355]: + onie_arch=x86_64
2022-08-09T05:48:05.9221573Z [    9.252618] rc.local[355]: + onie_bin=
2022-08-09T05:48:05.9221927Z [    9.269725] rc.local[355]: + onie_boot_reason=install
2022-08-09T05:48:05.9222516Z [    9.302635] rc.local[355]: + onie_build_date=2018-11-17T04:18+00:00
2022-08-09T05:48:05.9223085Z [    9.345719] rc.local[355]: + onie_build_machine=kvm_x86_64
2022-08-09T05:48:05.9223687Z [    9.371272] rc.local[355]: + onie_build_platform=x86_64-kvm_x86_64-r0
2022-08-09T05:48:05.9224095Z [    9.408530] rc.local[355]: + onie_config_version=1
2022-08-09T05:48:05.9224457Z [    9.441701] rc.local[355]: + onie_dev=/dev/vda2
2022-08-09T05:48:05.9224835Z [    9.457792] rc.local[355]: + onie_disco_boot_reason=install
2022-08-09T05:48:05.9225210Z [    9.493102] rc.local[355]: + onie_disco_dns=10.0.2.3
2022-08-09T05:48:05.9225591Z [    9.515010] rc.local[355]: + onie_disco_interface=eth0
2022-08-09T05:48:05.9225973Z [    9.553073] rc.local[355]: + onie_disco_ip=10.0.2.15
2022-08-09T05:48:05.9226333Z [    9.631052] rc.local[355]: + onie_disco_lease=86400
2022-08-09T05:48:05.9226699Z [    9.646008] rc.local[355]: + onie_disco_mask=24
2022-08-09T05:48:05.9227044Z [    9.673585] rc.local[355]: + onie_disco_opt53=05
2022-08-09T05:48:05.9227422Z [    9.693087] rc.local[355]: + onie_disco_router=10.0.2.2
2022-08-09T05:48:05.9227819Z [    9.710613] rc.local[355]: + onie_disco_serverid=10.0.2.2
2022-08-09T05:48:05.9228196Z [    9.741290] rc.local[355]: + onie_disco_siaddr=10.0.2.2
2022-08-09T05:48:05.9228595Z [    9.761164] rc.local[355]: + onie_disco_subnet=255.255.255.0
2022-08-09T05:48:05.9229203Z [    9.785856] rc.local[355]: + onie_exec_url=file://dev/vdb/onie-installer.bin
2022-08-09T05:48:05.9229606Z [    9.808127] rc.local[355]: + onie_firmware=auto
2022-08-09T05:48:05.9229992Z [    9.850056] rc.local[355]: + onie_grub_image_name=shimx64.efi
2022-08-09T05:48:05.9230374Z [    9.873300] rc.local[355]: + onie_initrd_tmp=/
2022-08-09T05:48:05.9230739Z [    9.893077] rc.local[355]: + onie_installer=/var/tmp/installer
2022-08-09T05:48:05.9231135Z [    9.921074] rc.local[355]: + onie_kernel_version=4.9.95
2022-08-09T05:48:05.9231507Z [    9.940415] rc.local[355]: + onie_local_parts=
2022-08-09T05:48:05.9231862Z [    9.956036] rc.local[355]: + onie_machine=kvm_x86_64
2022-08-09T05:48:05.9232233Z [    9.966625] rc.local[355]: + onie_machine_rev=0
2022-08-09T05:48:05.9232777Z [   10.004832] rc.local[355]: + onie_neighs=[fe80::2-eth0],
2022-08-09T05:48:05.9233172Z [   10.028606] rc.local[355]: + onie_partition_type=gpt
2022-08-09T05:48:05.9233737Z [   10.050937] rc.local[355]: + onie_platform=x86_64-kvm_x86_64-r0
2022-08-09T05:48:05.9234316Z [   10.070135] rc.local[355]: + onie_root_dir=/mnt/onie-boot/onie
2022-08-09T05:48:05.9234699Z [   10.090622] rc.local[355]: + onie_secure_boot=yes
2022-08-09T05:48:05.9235077Z [   10.117093] rc.local[355]: + onie_skip_ethmgmt_macs=yes
2022-08-09T05:48:05.9235457Z [   10.141297] rc.local[355]: + onie_switch_asic=qemu
2022-08-09T05:48:05.9235808Z [   10.150620] rc.local[355]: + onie_uefi_arch=x64
2022-08-09T05:48:05.9236192Z [   10.173101] rc.local[355]: + onie_uefi_boot_loader=shimx64.efi
2022-08-09T05:48:05.9236572Z [   10.205247] rc.local[355]: + onie_vendor_id=42623
2022-08-09T05:48:05.9237126Z [   10.225247] rc.local[355]: + onie_version=master-201811170418
2022-08-09T05:48:05.9237532Z [   10.249201] rc.local[355]: + program_console_speed
2022-08-09T05:48:05.9237878Z [   10.274402] rc.local[376]: + cat /proc/cmdline
2022-08-09T05:48:05.9238493Z [   10.303947] kdump-tools[343]: Starting kdump-tools:
2022-08-09T05:48:05.9239052Z [   10.330037] rc.local[377]: + grep -Eo console=ttyS[0-9]+,[0-9]+
2022-08-09T05:48:05.9239655Z [   10.350324] kdump-tools[379]: no crashkernel= parameter in the kernel cmdline ...
2022-08-09T05:48:05.9240200Z [   10.384367] kdump-tools[423]:  failed!
2022-08-09T05:48:05.9240675Z [   10.402416] rc.local[387]: + cut -d , -f2
2022-08-09T05:48:05.9241005Z [   10.442270] rc.local[355]: + speed=115200
2022-08-09T05:48:05.9241483Z [   10.455908] rc.local[355]: + [ -z 115200 ]
2022-08-09T05:48:05.9241840Z [   10.472842] rc.local[355]: + CONSOLE_SPEED=115200
2022-08-09T05:48:05.9242426Z [   10.501333] rc.local[389]: + grep agetty /lib/systemd/system/[email protected]
2022-08-09T05:48:05.9242988Z [   10.538241] rc.local[390]: + grep keep-baud
2022-08-09T05:48:05.9243742Z [   10.557479] rc.local[390]: ExecStart=-/sbin/agetty -o '-p -- \\u' --keep-baud 115200,57600,38400,9600 %I $TERM
2022-08-09T05:48:05.9244187Z [   10.596902] rc.local[355]: + [ 0 = 0 ]
2022-08-09T05:48:05.9244831Z [   10.617221] rc.local[355]: + sed -i s|\-\-keep\-baud .* %I| 115200 %I|g /lib/systemd/system/[email protected]
2022-08-09T05:48:05.9245460Z [   10.650881] rc.local[355]: + systemctl daemon-reload
2022-08-09T05:48:05.9246081Z [   10.677638] rc.local[355]: + [ -f /host/image-202205.132681-f16e7ad8e/platform/firsttime ]
2022-08-09T05:48:05.9246583Z [   10.709551] rc.local[355]: + echo First boot detected. Performing first boot tasks...
2022-08-09T05:48:05.9247057Z [   10.729363] rc.local[355]: First boot detected. Performing first boot tasks...
2022-08-09T05:48:05.9247568Z [   10.753716] rc.local[355]: + [ -n  ]
2022-08-09T05:48:05.9248077Z [   10.765356] rc.local[355]: + [ -n x86_64-kvm_x86_64-r0 ]
2022-08-09T05:48:05.9248633Z [   10.790293] rc.local[355]: + platform=x86_64-kvm_x86_64-r0
2022-08-09T05:48:05.9249164Z [   10.803214] rc.local[355]: + [ -d /host/old_config ]
2022-08-09T05:48:05.9249691Z [   10.822120] rc.local[355]: + [ -f /host/minigraph.xml ]
2022-08-09T05:48:05.9250173Z [   10.849764] rc.local[355]: + [ -n  ]
2022-08-09T05:48:05.9250543Z [   10.865258] rc.local[355]: + touch /tmp/pending_config_initialization
2022-08-09T05:48:05.9250981Z [   10.889288] rc.local[355]: + touch /tmp/notify_firstboot_to_platform
2022-08-09T05:48:05.9251563Z [   10.917251] rc.local[355]: + [ ! -d /host/reboot-cause/platform ]
2022-08-09T05:48:05.9252129Z [   10.935439] rc.local[355]: + mkdir -p /host/reboot-cause/platform
2022-08-09T05:48:05.9252819Z [   10.946412] rc.local[355]: + [ -d /host/image-202205.132681-f16e7ad8e/platform/x86_64-kvm_x86_64-r0 ]
2022-08-09T05:48:05.9253255Z [   10.984272] rc.local[355]: + sync
2022-08-09T05:48:05.9253747Z [   11.005261] rc.local[355]: + [ -n x86_64-kvm_x86_64-r0 ]
2022-08-09T05:48:05.9254233Z [   11.018530] rc.local[355]: + [ -n  ]
2022-08-09T05:48:05.9254713Z [   11.033977] rc.local[355]: + mkdir -p /var/platform
2022-08-09T05:48:05.9255253Z [   11.053480] rc.local[355]: + [ -f /etc/default/kdump-tools ]
2022-08-09T05:48:05.9255925Z [   11.066953] rc.local[355]: + sed -i -e s/__PLATFORM__/x86_64-kvm_x86_64-r0/g /etc/default/kdump-tools
2022-08-09T05:48:05.9256368Z [   11.109301] rc.local[355]: + firsttime_exit
2022-08-09T05:48:05.9256983Z [   11.117980] rc.local[355]: + rm -rf /host/image-202205.132681-f16e7ad8e/platform/firsttime
2022-08-09T05:48:05.9257402Z [   11.161298] rc.local[355]: + exit 0
2022-08-09T05:48:05.9257545Z 
2022-08-09T05:48:05.9257625Z 
2022-08-09T05:48:05.9257871Z Debian GNU/Linux 11 sonic ttyS0
2022-08-09T05:48:05.9258008Z 
2022-08-09T05:48:05.9258240Z sonic login:admin
2022-08-09T05:48:05.9258470Z  admin
2022-08-09T05:48:05.9258573Z 
2022-08-09T05:48:05.9258794Z Password: YourPaSsWoRd
2022-08-09T05:48:05.9258916Z 
2022-08-09T05:48:05.9259418Z Linux sonic 5.10.0-12-2-amd64 #1 SMP Debian 5.10.103-1 (2022-03-07) x86_64
2022-08-09T05:48:05.9259776Z You are on
2022-08-09T05:48:05.9260012Z   ____   ___  _   _ _  ____
2022-08-09T05:48:05.9260274Z  / ___| / _ \| \ | (_)/ ___|
2022-08-09T05:48:05.9260609Z  \___ \| | | |  \| | | |
2022-08-09T05:48:05.9261001Z   ___) | |_| | |\  | | |___
2022-08-09T05:48:05.9261364Z  |____/ \___/|_| \_|_|\____|
2022-08-09T05:48:05.9261483Z 
2022-08-09T05:48:05.9261950Z -- Software for Open Networking in the Cloud --
2022-08-09T05:48:05.9262112Z 
2022-08-09T05:48:05.9262389Z Unauthorized access and/or use are prohibited.
2022-08-09T05:48:05.9262729Z All access and/or use are subject to monitoring.
2022-08-09T05:48:05.9262902Z 
2022-08-09T05:48:05.9263143Z Help:    http://azure.github.io/SONiC/
2022-08-09T05:48:05.9263288Z 
2022-08-09T05:48:05.9263505Z **************
2022-08-09T05:48:05.9263758Z Running DEBUG image
2022-08-09T05:48:05.9264029Z **************
2022-08-09T05:48:05.9264283Z /src has the sources
2022-08-09T05:48:05.9264559Z /src is mounted in each docker
2022-08-09T05:48:05.9264863Z /debug is created for core files or temp files
2022-08-09T05:48:05.9265344Z Create a subdir under /debug to upload your files
2022-08-09T05:48:05.9265658Z /debug is mounted in each docker
2022-08-09T05:48:05.9266117Z �[?2004hadmin@sonic:~$ uptime
2022-08-09T05:48:05.9266388Z uptime
2022-08-09T05:48:05.9266700Z �[?2004l
2022-08-09T05:48:05.9267021Z  05:38:04 up 0 min,  1 user,  load average: 0.88, 0.21, 0.07
2022-08-09T05:48:05.9267523Z �[?2004hadmin@sonic:~$ show version
2022-08-09T05:48:05.9267800Z show version
2022-08-09T05:48:05.9268135Z �[?2004l
2022-08-09T05:48:05.9268393Z Traceback (most recent call last):
2022-08-09T05:48:05.9268735Z   File "/sonic/./check_install.py", line 64, in <module>
2022-08-09T05:48:05.9269037Z     main()
2022-08-09T05:48:05.9269317Z   File "/sonic/./check_install.py", line 56, in main
2022-08-09T05:48:05.9269638Z     p.expect([cmd_prompt])
2022-08-09T05:48:05.9270203Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/spawnbase.py", line 343, in expect
2022-08-09T05:48:05.9270639Z     return self.expect_list(compiled_pattern_list,
2022-08-09T05:48:05.9271262Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/spawnbase.py", line 372, in expect_list
2022-08-09T05:48:05.9271688Z     return exp.expect_loop(timeout)
2022-08-09T05:48:05.9272261Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/expect.py", line 181, in expect_loop
2022-08-09T05:48:05.9272657Z     return self.timeout(e)
2022-08-09T05:48:05.9273213Z   File "/usr/local/lib/python3.9/dist-packages/pexpect/expect.py", line 144, in timeout
2022-08-09T05:48:05.9273568Z     raise exc
2022-08-09T05:48:05.9273863Z pexpect.exceptions.TIMEOUT: Timeout exceeded.
2022-08-09T05:48:05.9274229Z <pexpect.pty_spawn.spawn object at 0x7f4a1b92bb80>
2022-08-09T05:48:05.9274541Z command: /usr/bin/telnet
2022-08-09T05:48:05.9275008Z args: [b'/usr/bin/telnet', b'127.0.0.1', b'9000']
2022-08-09T05:48:05.9275524Z buffer (last 100 chars): 'show version\r\n\x1b[?2004l\r'
2022-08-09T05:48:05.9276062Z before (last 100 chars): 'show version\r\n\x1b[?2004l\r'
2022-08-09T05:48:05.9276570Z after: <class 'pexpect.exceptions.TIMEOUT'>
2022-08-09T05:48:05.9276853Z match: None
2022-08-09T05:48:05.9277105Z match_index: None
2022-08-09T05:48:05.9277358Z exitstatus: None
2022-08-09T05:48:05.9277597Z flag_eof: False
2022-08-09T05:48:05.9277844Z pid: 1087738
2022-08-09T05:48:05.9278078Z child_fd: 5
2022-08-09T05:48:05.9278303Z closed: False
2022-08-09T05:48:05.9278542Z timeout: 600
2022-08-09T05:48:05.9278957Z delimiter: <class 'pexpect.exceptions.EOF'>
2022-08-09T05:48:05.9279513Z logfile: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>
2022-08-09T05:48:05.9279869Z logfile_read: None
2022-08-09T05:48:05.9280118Z logfile_send: None
2022-08-09T05:48:05.9280368Z maxread: 2000
2022-08-09T05:48:05.9280617Z ignorecase: False
2022-08-09T05:48:05.9280868Z searchwindowsize: None
2022-08-09T05:48:05.9281141Z delaybeforesend: 0.05
2022-08-09T05:48:05.9281400Z delayafterclose: 0.1
2022-08-09T05:48:05.9281673Z delayafterterminate: 0.1
2022-08-09T05:48:05.9281955Z searcher: searcher_re:
2022-08-09T05:48:05.9282381Z     0: re.compile('admin@sonic:~\\$ $')
2022-08-09T05:48:05.9282675Z ++ on_error
2022-08-09T05:48:05.9283151Z ++ netstat -antp

@xumia
Copy link
Collaborator Author

xumia commented Aug 10, 2022

https://dev.azure.com/mssonic/build/_build/results?buildId=132869&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

Unable to connect to redis: Cannot assign requested address

�[?2004hadmin@sonic:~$ show version
show version
�[?2004l
Traceback (most recent call last):
File "/usr/local/bin/show", line 5, in
from show.main import cli
File "/usr/local/lib/python3.9/dist-packages/show/main.py", line 8, in
import utilities_common.cli as clicommon
File "/usr/local/lib/python3.9/dist-packages/utilities_common/cli.py", line 187, in
iface_alias_converter = InterfaceAliasConverter()
File "/usr/local/lib/python3.9/dist-packages/utilities_common/cli.py", line 126, in init
self.port_dict = multi_asic.get_port_table()
File "/usr/local/lib/python3.9/dist-packages/sonic_py_common/multi_asic.py", line 272, in get_port_table
ports = get_port_table_for_asic(ns)
File "/usr/local/lib/python3.9/dist-packages/sonic_py_common/multi_asic.py", line 286, in get_port_table_for_asic
config_db = connect_config_db_for_ns(namespace)
File "/usr/local/lib/python3.9/dist-packages/sonic_py_common/multi_asic.py", line 44, in connect_config_db_for_ns
config_db.connect()
File "/usr/lib/python3/dist-packages/swsscommon/swsscommon.py", line 1897, in connect
return _swsscommon.ConfigDBConnector_Native_connect(self, wait_for_init, retry_on)
RuntimeError: Unable to connect to redis: Cannot assign requested address

@yxieca yxieca added the Triaged this issue has been triaged label Aug 17, 2022
xumia added a commit that referenced this issue Aug 30, 2022
Why I did it
Fix a build not stable issue: #11620
The vs vm has started successfully, but failed to wait for the message "sonic login:".

There were 55 builds failed caused by the issue in the last 30 days.

AzurePipelineBuildLogs
| where startTime > ago(30d)
| where type =~ "task"
| where result =~ "failed"
| where name =~ "Build sonic image"
| where content contains "Timeout exceeded"
| where content contains "re.compile('sonic login:')"
| project-away content
| extend branchName=case(reason=~"pullRequest", tostring(todynamic(parameters)['system.pullRequest.targetBranch']),
              replace("refs/heads/", "", sourceBranch))
| summarize FailedCount=dcount(buildId) by branchName

branchName	FailedCount
master	37
202012	9
202106	4
202111	2
202205	1
201911	1
It is caused by the login message mixed with the output message of the /etc/rc.local, one of the examples as below: (see the message rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: )
The check_install.py was waiting for the message "sonic login:", and Linux console was waiting for the username input (the login message has already printed in the console).
https://dev.azure.com/mssonic/build/_build/results?buildId=123294&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

2022-07-17T15:00:58.9198877Z [   25.493855] rc.local[307]: + onie_disco_opt53=05
2022-07-17T15:00:58.9199330Z [   25.595054] rc.local[307]: + onie_disco_router=10.0.2.2
2022-07-17T15:00:58.9199781Z [   25.699409] rc.local[307]: + onie_disco_serverid=10.0.2.2
2022-07-17T15:00:58.9200252Z [   25.789891] rc.local[307]: + onie_disco_siaddr=10.0.2.2
2022-07-17T15:00:58.9200622Z [   25.880920] 
2022-07-17T15:00:58.9200745Z 
2022-07-17T15:00:58.9201019Z Debian GNU/Linux 10 sonic ttyS0
2022-07-17T15:00:58.9201201Z 
2022-07-17T15:00:58.9201542Z rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: 
2022-07-17T15:00:58.9202309Z [   26.079767] rc.local[307]: + onie_exec_url=file://dev/vdb/onie-installer.bin

How I did it
Input a newline when finished to run the script /etc/rc.local.
If entering a newline, the message "sonic login:" will prompt again.
@xumia xumia closed this as completed Aug 30, 2022
zbud-msft pushed a commit to zbud-msft/sonic-buildimage that referenced this issue Aug 31, 2022
Why I did it
Fix a build not stable issue: sonic-net#11620
The vs vm has started successfully, but failed to wait for the message "sonic login:".

There were 55 builds failed caused by the issue in the last 30 days.

AzurePipelineBuildLogs
| where startTime > ago(30d)
| where type =~ "task"
| where result =~ "failed"
| where name =~ "Build sonic image"
| where content contains "Timeout exceeded"
| where content contains "re.compile('sonic login:')"
| project-away content
| extend branchName=case(reason=~"pullRequest", tostring(todynamic(parameters)['system.pullRequest.targetBranch']),
              replace("refs/heads/", "", sourceBranch))
| summarize FailedCount=dcount(buildId) by branchName

branchName	FailedCount
master	37
202012	9
202106	4
202111	2
202205	1
201911	1
It is caused by the login message mixed with the output message of the /etc/rc.local, one of the examples as below: (see the message rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: )
The check_install.py was waiting for the message "sonic login:", and Linux console was waiting for the username input (the login message has already printed in the console).
https://dev.azure.com/mssonic/build/_build/results?buildId=123294&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

2022-07-17T15:00:58.9198877Z [   25.493855] rc.local[307]: + onie_disco_opt53=05
2022-07-17T15:00:58.9199330Z [   25.595054] rc.local[307]: + onie_disco_router=10.0.2.2
2022-07-17T15:00:58.9199781Z [   25.699409] rc.local[307]: + onie_disco_serverid=10.0.2.2
2022-07-17T15:00:58.9200252Z [   25.789891] rc.local[307]: + onie_disco_siaddr=10.0.2.2
2022-07-17T15:00:58.9200622Z [   25.880920] 
2022-07-17T15:00:58.9200745Z 
2022-07-17T15:00:58.9201019Z Debian GNU/Linux 10 sonic ttyS0
2022-07-17T15:00:58.9201201Z 
2022-07-17T15:00:58.9201542Z rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: 
2022-07-17T15:00:58.9202309Z [   26.079767] rc.local[307]: + onie_exec_url=file://dev/vdb/onie-installer.bin

How I did it
Input a newline when finished to run the script /etc/rc.local.
If entering a newline, the message "sonic login:" will prompt again.
yxieca pushed a commit that referenced this issue Sep 1, 2022
Why I did it
Fix a build not stable issue: #11620
The vs vm has started successfully, but failed to wait for the message "sonic login:".

There were 55 builds failed caused by the issue in the last 30 days.

AzurePipelineBuildLogs
| where startTime > ago(30d)
| where type =~ "task"
| where result =~ "failed"
| where name =~ "Build sonic image"
| where content contains "Timeout exceeded"
| where content contains "re.compile('sonic login:')"
| project-away content
| extend branchName=case(reason=~"pullRequest", tostring(todynamic(parameters)['system.pullRequest.targetBranch']),
              replace("refs/heads/", "", sourceBranch))
| summarize FailedCount=dcount(buildId) by branchName

branchName	FailedCount
master	37
202012	9
202106	4
202111	2
202205	1
201911	1
It is caused by the login message mixed with the output message of the /etc/rc.local, one of the examples as below: (see the message rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: )
The check_install.py was waiting for the message "sonic login:", and Linux console was waiting for the username input (the login message has already printed in the console).
https://dev.azure.com/mssonic/build/_build/results?buildId=123294&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

2022-07-17T15:00:58.9198877Z [   25.493855] rc.local[307]: + onie_disco_opt53=05
2022-07-17T15:00:58.9199330Z [   25.595054] rc.local[307]: + onie_disco_router=10.0.2.2
2022-07-17T15:00:58.9199781Z [   25.699409] rc.local[307]: + onie_disco_serverid=10.0.2.2
2022-07-17T15:00:58.9200252Z [   25.789891] rc.local[307]: + onie_disco_siaddr=10.0.2.2
2022-07-17T15:00:58.9200622Z [   25.880920] 
2022-07-17T15:00:58.9200745Z 
2022-07-17T15:00:58.9201019Z Debian GNU/Linux 10 sonic ttyS0
2022-07-17T15:00:58.9201201Z 
2022-07-17T15:00:58.9201542Z rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: 
2022-07-17T15:00:58.9202309Z [   26.079767] rc.local[307]: + onie_exec_url=file://dev/vdb/onie-installer.bin

How I did it
Input a newline when finished to run the script /etc/rc.local.
If entering a newline, the message "sonic login:" will prompt again.
xumia added a commit to xumia/sonic-buildimage-1 that referenced this issue Sep 8, 2022
Why I did it
Fix a build not stable issue: sonic-net#11620
The vs vm has started successfully, but failed to wait for the message "sonic login:".

There were 55 builds failed caused by the issue in the last 30 days.

AzurePipelineBuildLogs
| where startTime > ago(30d)
| where type =~ "task"
| where result =~ "failed"
| where name =~ "Build sonic image"
| where content contains "Timeout exceeded"
| where content contains "re.compile('sonic login:')"
| project-away content
| extend branchName=case(reason=~"pullRequest", tostring(todynamic(parameters)['system.pullRequest.targetBranch']),
              replace("refs/heads/", "", sourceBranch))
| summarize FailedCount=dcount(buildId) by branchName

branchName	FailedCount
master	37
202012	9
202106	4
202111	2
202205	1
201911	1
It is caused by the login message mixed with the output message of the /etc/rc.local, one of the examples as below: (see the message rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: )
The check_install.py was waiting for the message "sonic login:", and Linux console was waiting for the username input (the login message has already printed in the console).
https://dev.azure.com/mssonic/build/_build/results?buildId=123294&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

2022-07-17T15:00:58.9198877Z [   25.493855] rc.local[307]: + onie_disco_opt53=05
2022-07-17T15:00:58.9199330Z [   25.595054] rc.local[307]: + onie_disco_router=10.0.2.2
2022-07-17T15:00:58.9199781Z [   25.699409] rc.local[307]: + onie_disco_serverid=10.0.2.2
2022-07-17T15:00:58.9200252Z [   25.789891] rc.local[307]: + onie_disco_siaddr=10.0.2.2
2022-07-17T15:00:58.9200622Z [   25.880920]
2022-07-17T15:00:58.9200745Z
2022-07-17T15:00:58.9201019Z Debian GNU/Linux 10 sonic ttyS0
2022-07-17T15:00:58.9201201Z
2022-07-17T15:00:58.9201542Z rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login:
2022-07-17T15:00:58.9202309Z [   26.079767] rc.local[307]: + onie_exec_url=file://dev/vdb/onie-installer.bin

How I did it
Input a newline when finished to run the script /etc/rc.local.
If entering a newline, the message "sonic login:" will prompt again.
lguohan pushed a commit that referenced this issue Sep 8, 2022
Why I did it
Fix a build not stable issue: #11620
The vs vm has started successfully, but failed to wait for the message "sonic login:".

There were 55 builds failed caused by the issue in the last 30 days.

AzurePipelineBuildLogs
| where startTime > ago(30d)
| where type =~ "task"
| where result =~ "failed"
| where name =~ "Build sonic image"
| where content contains "Timeout exceeded"
| where content contains "re.compile('sonic login:')"
| project-away content
| extend branchName=case(reason=~"pullRequest", tostring(todynamic(parameters)['system.pullRequest.targetBranch']),
              replace("refs/heads/", "", sourceBranch))
| summarize FailedCount=dcount(buildId) by branchName

branchName	FailedCount
master	37
202012	9
202106	4
202111	2
202205	1
201911	1
It is caused by the login message mixed with the output message of the /etc/rc.local, one of the examples as below: (see the message rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: )
The check_install.py was waiting for the message "sonic login:", and Linux console was waiting for the username input (the login message has already printed in the console).
https://dev.azure.com/mssonic/build/_build/results?buildId=123294&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

2022-07-17T15:00:58.9198877Z [   25.493855] rc.local[307]: + onie_disco_opt53=05
2022-07-17T15:00:58.9199330Z [   25.595054] rc.local[307]: + onie_disco_router=10.0.2.2
2022-07-17T15:00:58.9199781Z [   25.699409] rc.local[307]: + onie_disco_serverid=10.0.2.2
2022-07-17T15:00:58.9200252Z [   25.789891] rc.local[307]: + onie_disco_siaddr=10.0.2.2
2022-07-17T15:00:58.9200622Z [   25.880920]
2022-07-17T15:00:58.9200745Z
2022-07-17T15:00:58.9201019Z Debian GNU/Linux 10 sonic ttyS0
2022-07-17T15:00:58.9201201Z
2022-07-17T15:00:58.9201542Z rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login:
2022-07-17T15:00:58.9202309Z [   26.079767] rc.local[307]: + onie_exec_url=file://dev/vdb/onie-installer.bin

How I did it
Input a newline when finished to run the script /etc/rc.local.
If entering a newline, the message "sonic login:" will prompt again.
zbud-msft added a commit to renukamanavalan/sonic-buildimage that referenced this issue Sep 12, 2022
* Add YANG models for structured events

* [Arista] Update platform submodule (sonic-net#11853)

* Advance submodule sonic-sairedis (sonic-net#11704)

2022-07-28 854d54e: Add support of mdio IPC server class using sai switch api and unix socket (sonic-net/sonic-sairedis#1080) (Jiahua Wang)
2022-07-27 513cb2a: [FlexCounter] Refactor FlexCounter class (sonic-net/sonic-sairedis#1073) (Junchao-Mellanox)

* Update swss common submodule for events api (sonic-net#11858)

#### Why I did it

Structured events code like eventd, rsyslogplugin, requires changes made in swss-common

Submodule adds these newest commits:

56b0f18 (HEAD, origin/master, origin/HEAD, master) Events: APIs to set/get global options (sonic-net#672)
5467c89 Add changes to yml file to improve pytest (sonic-net#674)

#### How I did it

Updated git submodule

#### How to verify it

Check new commit pointer

* [Arista] Fix content of platform.json for DCS-720DT-48S (sonic-net#11855)

Why I did it
Content of platform.json was outdated and some platform_tests/api of sonic-mgmt were failing.

How I did it
Added the necessary values to platform.json

How to verify it
Running platform_tests/api of sonic-mgmt should yield 100% passrate.

* [actions] Update github actions label and automerge. (sonic-net#11736)

1. Add auto approve step when adding label to version upgrading PR.
2. Use mssonicbld TOKEN to merge version upgrading PR instead of 'github actions'

* [ci] Update reproducible build related pipeline. (sonic-net#11810)

* Address Review Comment to define SONIC_GLOBAL_DB_CLI in gbsyncd.sh (sonic-net#11857)

As part of PR sonic-net#11754

    Change was added to use variable SONIC_DB_NS_CLI for
    namespace but that will not work since ./files/scripts/syncd_common.sh
    uses SONIC_DB_CLI. So revert back to use SONIC_DB_CLI and define new
    variable for SONIC_GLOBAL_DB_CLI for global/host db cli access

   Also fixed DB_CLI not working for namespace.

* [Build] Increase the size of the installer image (sonic-net#11869)

#### Why I did it
Fix the build failure caused by the installer image size too small. The installer image is only used during the build, not impact the final images.
See https://dev.azure.com/mssonic/build/_build/results?buildId=139926&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

```
+ fallocate -l 2048M ./sonic-installer.img
+ mkfs.vfat ./sonic-installer.img
mkfs.fat 4.2 (2021-01-31)
++ mktemp -d
+ tmpdir=/tmp/tmp.TqdDSc00Cn
+ mount -o loop ./sonic-installer.img /tmp/tmp.TqdDSc00Cn
+ cp target/sonic-vs.bin /tmp/tmp.TqdDSc00Cn/onie-installer.bin
cp: error writing '/tmp/tmp.TqdDSc00Cn/onie-installer.bin': No space left on device
[  FAIL LOG END  ] [ target/sonic-vs.img.gz ]
```

#### How I did it
Increase the size from 2048M to 4096M.
Why not increase to 16G like qcow2 image?
The qcow2 supports the sparse disk, although a big disk size allocated, but it will not consume the real disk size. The falocate does not support the sparse disk. We do not want to allocate a very big disk, but no use at all. It will require more space to build.

* Update sensor names for msn4600c for the 5.10 kernel (sonic-net#11491)

* Update sensor names for msn4600c for the 5.10 kernel

Looks like a sensor was removed in the 5.10 kernel for the tps53679
sensor, so the names/indexing has changed.

Related to sonic-net/sonic-mgmt#4513.

Signed-off-by: Saikrishna Arcot <[email protected]>

* Update sensors file

Signed-off-by: Saikrishna Arcot <[email protected]>

Signed-off-by: Saikrishna Arcot <[email protected]>

* Fix error handling when failing to install a deb package (sonic-net#11846)

The current error handling code for when a deb package fails to be
installed currently has a chain of commands linked together by && and
ends with `exit 1`. The assumption is that the commands would succeed,
and the last `exit 1` would end it with a non-zero return code, thus
fully failing the target and causing the build to stop because of bash's
-e flag.

However, if one of the commands prior to `exit 1` returns a non-zero
return code, then bash won't actually treat it as a terminating error.
From bash's man page:

```
-e      Exit immediately if a pipeline (which may consist of a single simple
	command), a list, or a compound command (see SHELL GRAMMAR above),
        exits with a non-zero status.  The shell does not exit if the
        command that fails is part of the  command  list  immediately
        following a while or until keyword, part of the test following the
        if or elif reserved words, part of any command executed in a && or
        || list except the command following the final && or ||, any
        command in a pipeline but the last, or if the command's return
        value is being inverted with !.  If a compound command other than a
        subshell returns a non-zero status because a command failed while
        -e was being ignored, the shell does not exit.
```

The part `part of any command executed in a && or || list except the
command following the final && or ||` says that if the failing command
is not the `exit 1` that we have at the end, then bash doesn't treat it
as an error and exit immediately. Additionally, since this is a compound
command, but isn't in a subshell (subshell are marked by `(` and `)`,
whereas `{` and `}` just tells bash to run the commands in the current
environment), bash doesn't exist. The result of this is that in the
deb-install target, if a package installation fails, it may be
infinitely stuck in that while-loop.

There are two fixes for this: change to using a subshell, or use `;`
instead of `&&`. Using a subshell would, I think, require exporting any
shell variables used in the subshell, so I chose to change the `&&` to
`;`. In addition, at the start of the subshell, `set +e` is added in,
which removes the exit-on-error handling of bash. This makes sure that
all commands are run (the output of which may help for debugging) and
that it still exits with 1, which will then fully fail the target.

Signed-off-by: Saikrishna Arcot <[email protected]>

Signed-off-by: Saikrishna Arcot <[email protected]>

* Fix vs check install login timeout issue (sonic-net#11727)

Why I did it
Fix a build not stable issue: sonic-net#11620
The vs vm has started successfully, but failed to wait for the message "sonic login:".

There were 55 builds failed caused by the issue in the last 30 days.

AzurePipelineBuildLogs
| where startTime > ago(30d)
| where type =~ "task"
| where result =~ "failed"
| where name =~ "Build sonic image"
| where content contains "Timeout exceeded"
| where content contains "re.compile('sonic login:')"
| project-away content
| extend branchName=case(reason=~"pullRequest", tostring(todynamic(parameters)['system.pullRequest.targetBranch']),
              replace("refs/heads/", "", sourceBranch))
| summarize FailedCount=dcount(buildId) by branchName

branchName	FailedCount
master	37
202012	9
202106	4
202111	2
202205	1
201911	1
It is caused by the login message mixed with the output message of the /etc/rc.local, one of the examples as below: (see the message rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: )
The check_install.py was waiting for the message "sonic login:", and Linux console was waiting for the username input (the login message has already printed in the console).
https://dev.azure.com/mssonic/build/_build/results?buildId=123294&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=359769c4-8b5e-5976-a793-85da132e0a6f

2022-07-17T15:00:58.9198877Z [   25.493855] rc.local[307]: + onie_disco_opt53=05
2022-07-17T15:00:58.9199330Z [   25.595054] rc.local[307]: + onie_disco_router=10.0.2.2
2022-07-17T15:00:58.9199781Z [   25.699409] rc.local[307]: + onie_disco_serverid=10.0.2.2
2022-07-17T15:00:58.9200252Z [   25.789891] rc.local[307]: + onie_disco_siaddr=10.0.2.2
2022-07-17T15:00:58.9200622Z [   25.880920] 
2022-07-17T15:00:58.9200745Z 
2022-07-17T15:00:58.9201019Z Debian GNU/Linux 10 sonic ttyS0
2022-07-17T15:00:58.9201201Z 
2022-07-17T15:00:58.9201542Z rc.local[307]: sonic+ onie_disco_subnet=255.255.255.0 login: 
2022-07-17T15:00:58.9202309Z [   26.079767] rc.local[307]: + onie_exec_url=file://dev/vdb/onie-installer.bin

How I did it
Input a newline when finished to run the script /etc/rc.local.
If entering a newline, the message "sonic login:" will prompt again.

* [ci] Fix bug involved by PR 11810 which affect official build pipeline (sonic-net#11891)

Why I did it
Fix the official build not triggered correctly issue, caused by the azp template path not existing.

How I did it
Change the azp template path.

* DellEMC: Z9332f - Graceful platform reboot (sonic-net#10240)

Why I did it
To gracefully unmount filesystems and stop containers while performing a cold reboot.
Unmount ONIE-BOOT if mounted during fast/soft/warm reboot
How I did it
Override systemd-reboot service to perform a cold reboot.
Unmount ONIE-BOOT if mounted using fast/soft/warm-reboot plugins.
How to verify it
On reboot, verify that the container stop and filesystem unmount services have completed execution before the platform reboot.

* [Nokia][Nokia-IXR7250E-36x100G & Nokia-IXR7250E-36x400G] Update BCM (sonic-net#11577)

config to support ERSPAN egress mirror and also set flag to preserve ECN

* Align API get_device_runtime_metadata() for python version < 3.9 (sonic-net#11900)

Why I did it:
API get_device_runtime_metadata() added by sonic-net#11795 uses merge operator for dict but that is supported only for python version >=3.9. This API will be be used by scrips eg:hostcfgd which is still build for buster which does not have python 3.9 support.

* [Arista7050cx3] TD3 SKU changes for pg headroom value after interop testing with cisco 8102 (sonic-net#11901)

Why I did it
After PFC interop testing between 8102 and 7050cx3, data packet losses were observed on the Rx ports of the 7050cx3 (inflow from 8102) during testing. This was primarily due to the slower response times to react to PFC pause packets for the 8102, when receiving such frames from neighboring devices. To solve for the packet drops, the 7050cx3 pg headroom size has to be increased to 160kB.

How I did it
Modified the xoff threshold value to 160kB in the pg_profile file to allow for the buffer manager to read that value when building the image, and configuring the device

How to verify it
run "mmuconfig -l" once image is built


Signed-off-by: dojha <[email protected]>

* Add peer review comments on bgp

* Add peer review changes + spacing

* Add changes to events-swss

* Add peer review changes in pmon swss

* Add review changes dhcp-relay

* Add peer review changes to host

* Add changes to severity, leafref

* Remove unused grouping

* Remove redis generic

Signed-off-by: Saikrishna Arcot <[email protected]>
Signed-off-by: dojha <[email protected]>
Co-authored-by: Samuel Angebault <[email protected]>
Co-authored-by: Junhua Zhai <[email protected]>
Co-authored-by: Liu Shilong <[email protected]>
Co-authored-by: abdosi <[email protected]>
Co-authored-by: xumia <[email protected]>
Co-authored-by: Saikrishna Arcot <[email protected]>
Co-authored-by: Arun Saravanan Balachandran <[email protected]>
Co-authored-by: saksarav-nokia <[email protected]>
Co-authored-by: Dev Ojha <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Triaged this issue has been triaged
Projects
None yet
Development

No branches or pull requests

2 participants