#3538 closed bug (Fixed)

Adding host in console-UI fails.

Reported by: mhertz Owned by:
Priority: minor Milestone: 2.1.2
Component: Console UI Version: develop
Keywords: Cc:

Description

As title, currently it's not possible to add new host in console-UI as states port need be integer.

I added some debug-prints and found the 'result' dict indeed saves port as string, e.g. I tested it worked here just changing line 107 of connectionmanager.py from/to:

                result['port']['value'],
                int(result['port']['value']),

Also, currently when having input new host data and pressed return then need also press escape to get out of connection-manager, which i just changed in same file line 135 from/to:

            self.update_select_host_popup()
            self.pop_popup()

Thanks in advance.

Change History (2)

comment:2 Changed 14 months ago by Cas

  • Milestone changed from needs verified to 2.1.2
  • Resolution set to Fixed
  • Status changed from new to closed

Fixed [543fce4f2]

Note: See TracTickets for help on using tickets.