[
https://issues.jboss.org/browse/JBIDE-21678?page=com.atlassian.jira.plugi...
]
Viacheslav Kabanovich commented on JBIDE-21678:
-----------------------------------------------
Method ConnectionWizardPageModel.init() gets instance of IConnectionFactory and passes it
to getSignupUrl(). However, in the case of new connection, the passed value is null, and
connection factory is computed in initConnection(). So, the fix has to take that into
account and replace
{code}
this.signupUrl = getSignupUrl(host, connectionFactory);
{code}
with
{code}
this.signupUrl = getSignupUrl(host, this.connectionFactory);
{code}
Value signupUrl is used in page by method showHideSignupLink() (the method name does not
need further comments :) ).
New Connection wizard: Getting started info is not visible by default
----------------------------------------------------------------------
Key: JBIDE-21678
URL:
https://issues.jboss.org/browse/JBIDE-21678
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 4.3.1.CR1
Reporter: Marián Labuda
Labels: connection_wizard, openshift_v2, openshift_v3
Fix For: 4.3.1.CR1
Attachments: default_new_conn.png, rendered_new_conn.png
In opened New Connection wizard there is supposed to be getting started text leading to
either sign in page for OpenShift 2 or to getting started content for OpenShift 3, but it
it empty by default. Upon changing e.g. server type or checking/unchecking Use default
server checkbox, the text appears. Resizing window does not fix the problem. This is also
happening when editing an existing OpenShift 3 connection (via context menu of a
connection).
See screenshot of fresh opened New Connection wizard:
!default_new_conn.png!
and after checkbox is (un)checked or server type is changed:
!rendered_new_conn.png!
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)