[
https://issues.jboss.org/browse/JBIDE-15967?page=com.atlassian.jira.plugi...
]
Andre Dietisheim commented on JBIDE-15967:
------------------------------------------
There are no remote calls at this point only cached values. All available domains are
loaded upfront and subsequent calls to get domains are delivering cached values:
https://github.com/adietish/jbosstools-openshift/blob/72df870a10c7b5c8d8b...
{code:title=ApplicationConfigurationWizardPage}
protected void loadOpenshiftResources(final DataBindingContext dbc) {
try {
WizardUtils.runInWizard(new
AbstractDelegatingMonitorJob("Loading applications, cartridges and gears...") {
@Override
protected IStatus doRun(IProgressMonitor monitor) {
try {
monitor.setTaskName("Loading
domains...");
pageModel.loadDomains();
monitor.setTaskName("Loading existing
applications...");
pageModel.loadExistingApplications();
monitor.setTaskName("Loading
application cartridges...");
pageModel.loadStandaloneCartridges();
monitor.setTaskName("Loading
embeddable cartridges...");
setViewerInput(pageModel.loadEmbeddedCartridges());
monitor.setTaskName("Loading gear
profiles...");
pageModel.loadGearProfiles();
return Status.OK_STATUS;
} catch (NotFoundOpenShiftException e) {
return Status.OK_STATUS;
} catch (Exception e) {
return
OpenShiftUIActivator.createErrorStatus(
"Could not load
applications, cartridges and gears", e);
}
}
}, getContainer(), dbc);
} catch (Exception ex) {
// ignore
}
}
{code}
Application wizard: Cannot create application with environment
variables: button not viisible
---------------------------------------------------------------------------------------------
Key: JBIDE-15967
URL:
https://issues.jboss.org/browse/JBIDE-15967
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 4.1.1.Beta1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Priority: Critical
Fix For: 4.1.1.CR1
Attachments: missing-env-vars-button.png
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira