[JBoss JIRA] (JBIDE-21445) NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-21445:
----------------------------------------
Summary: NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
Key: JBIDE-21445
URL: https://issues.jboss.org/browse/JBIDE-21445
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Environment: OSX
JBDS
OpenShift origin 1.1.0.1
Reporter: Akram Ben Aissi
Priority: Blocker
Fix For: 4.3.1.Beta2
When trying to import a project from a BuildConfig (right clic import as new project), I get a NullPointerException after clicking Finish.
Same issue occurs when clicking next, and changing the destination folder for anything that exists or does not exist
eclipse.log is attached.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (TOOLSDOC-702) JBDS-IS 8.0.4: Update Components and Supported Configurations
by Andrej Podhradsky (JIRA)
[ https://issues.jboss.org/browse/TOOLSDOC-702?page=com.atlassian.jira.plug... ]
Andrej Podhradsky closed TOOLSDOC-702.
--------------------------------------
Verified
> JBDS-IS 8.0.4: Update Components and Supported Configurations
> -------------------------------------------------------------
>
> Key: TOOLSDOC-702
> URL: https://issues.jboss.org/browse/TOOLSDOC-702
> Project: Documentation for JBoss Tools and Developer Studio
> Issue Type: Task
> Components: General documentation issues
> Affects Versions: 8.0.4
> Reporter: Andrej Podhradsky
> Assignee: Misha Ali
> Priority: Blocker
> Labels: Support
> Fix For: 8.0.4
>
>
> The documentation "Red Hat JBoss Developer Studio Integration Stack Components and Supported Configurations" on CSP doesn't contain info about JBDS-IS 8.0.4 (the latest info is about 8.0.3).
> Please update the list of released components as follows
> Teiid Designer 9.0.4.Final
> ModeShape 3.7.0.Final
> jBPM3 4.5.200.Final
> BPEL 1.3.100.Final_1.0.5.Final
> BPMN2 1.1.3.Final
> Drools 6.2.0.Final
> ESB 1.5.530.Final
> SwitchYard 2.0.1.Final
> Fuse Tooling 7.3.2.Final
> Note: The list of Early Access Components is empty (SwitchYard and fuse tooling was moved from EA to GA)
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (JBIDE-21443) NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21443?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich commented on JBIDE-21443:
-----------------------------------------------
[~fbricon], please take a look at the pull request.
> NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
> ----------------------------------------------------------------------------------------------
>
> Key: JBIDE-21443
> URL: https://issues.jboss.org/browse/JBIDE-21443
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Environment: OSX
> JBDS
> OpenShift origin 1.1.0.1
> Reporter: Akram Ben Aissi
> Priority: Blocker
> Fix For: 4.3.1.Beta2
>
> Attachments: eclipse.log
>
>
> When trying to import a project from a BuildConfig (right clic import as new project), I get a NullPointerException after clicking Finish.
> Same issue occurs when clicking next, and changing the destination folder for anything that exists or does not exist
> eclipse.log is attached.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (JBIDE-21443) NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21443?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich edited comment on JBIDE-21443 at 1/12/16 9:07 PM:
------------------------------------------------------------------------
Ok, it seems I see it.
The problem is that project name 'quickstart' is ended with 't'.
The same failure will be with the last 'g' or 'i'.
Project name is extracted by matching uri to pattern {code}"([^/]+[^(\\.git)/])(/|\\.git)?$"{code} and it assumes that (\\.git) inside [^ ] will be considered as one sequence to be avoided. No, instead matcher avoids the last symbol if it one of '.', 'g', 'i', 't'.
The pattern should be fixed.
was (Author: scabanovich):
Ok, it seems I see it.
The problem is that project name 'quickstart' is ended with 't'.
The same failure will be with the last 'g' or 'i'.
Project name is extracted by matching uri to pattern "([^/]+[^(\\.git)/])(/|\\.git)?$" and it assumes that (\\.git) inside [^ ] will be considered as one sequence to be avoided. No, instead matcher avoids the last symbol if it one of '.', 'g', 'i', 't'.
The pattern should be fixed.
> NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
> ----------------------------------------------------------------------------------------------
>
> Key: JBIDE-21443
> URL: https://issues.jboss.org/browse/JBIDE-21443
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Environment: OSX
> JBDS
> OpenShift origin 1.1.0.1
> Reporter: Akram Ben Aissi
> Priority: Blocker
> Attachments: eclipse.log
>
>
> When trying to import a project from a BuildConfig (right clic import as new project), I get a NullPointerException after clicking Finish.
> Same issue occurs when clicking next, and changing the destination folder for anything that exists or does not exist
> eclipse.log is attached.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (JBIDE-21443) NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21443?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich edited comment on JBIDE-21443 at 1/12/16 9:06 PM:
------------------------------------------------------------------------
Ok, it seems I see it.
The problem is that project name 'quickstart' is ended with 't'.
The same failure will be with the last 'g' or 'i'.
Project name is extracted by matching uri to pattern "([^/]+[^(\\.git)/])(/|\\.git)?$" and it assumes that (\\.git) inside [^ ] will be considered as one sequence to be avoided. No, instead matcher avoids the last symbol if it one of '.', 'g', 'i', 't'.
The pattern should be fixed.
was (Author: scabanovich):
[~akrambenaissi], could you please add a screenshot showing the view with selection on which wizard was invoked and the wizard before clicking 'Finish'.
> NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
> ----------------------------------------------------------------------------------------------
>
> Key: JBIDE-21443
> URL: https://issues.jboss.org/browse/JBIDE-21443
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Environment: OSX
> JBDS
> OpenShift origin 1.1.0.1
> Reporter: Akram Ben Aissi
> Priority: Blocker
> Attachments: eclipse.log
>
>
> When trying to import a project from a BuildConfig (right clic import as new project), I get a NullPointerException after clicking Finish.
> Same issue occurs when clicking next, and changing the destination folder for anything that exists or does not exist
> eclipse.log is attached.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (JBIDE-21440) Wrong log encoding in Eclipse Console View under WIndows
by Jeff Cantrill (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21440?page=com.atlassian.jira.plugi... ]
Jeff Cantrill commented on JBIDE-21440:
---------------------------------------
[~dgolovin] This is not a bug in the eclipse tooling and an issue should be opened here: https://github.com/openshift/origin That said, if and when we move log retrieval to a straight REST call instead of relying on the openshift binary, that may or may not resolve this issue. Closing as not a bug in the plugin.
> Wrong log encoding in Eclipse Console View under WIndows
> --------------------------------------------------------
>
> Key: JBIDE-21440
> URL: https://issues.jboss.org/browse/JBIDE-21440
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Environment: Windows 10 Home
> Reporter: Denis Golovin
> Attachments: oc-logs-bc-nodejs-example-windows.png, wrong-encoding-console-view.png
>
>
> Node packages hierarchy output shown on scrrenshot after express(a)4.13.3 node_modules/express is not visible.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (TOOLSDOC-702) JBDS-IS 8.0.4: Update Components and Supported Configurations
by Misha Ali (JIRA)
[ https://issues.jboss.org/browse/TOOLSDOC-702?page=com.atlassian.jira.plug... ]
Misha Ali resolved TOOLSDOC-702.
--------------------------------
Resolution: Done
> JBDS-IS 8.0.4: Update Components and Supported Configurations
> -------------------------------------------------------------
>
> Key: TOOLSDOC-702
> URL: https://issues.jboss.org/browse/TOOLSDOC-702
> Project: Documentation for JBoss Tools and Developer Studio
> Issue Type: Task
> Components: General documentation issues
> Affects Versions: 8.0.4
> Reporter: Andrej Podhradsky
> Assignee: Misha Ali
> Priority: Blocker
> Labels: Support
> Fix For: 8.0.4
>
>
> The documentation "Red Hat JBoss Developer Studio Integration Stack Components and Supported Configurations" on CSP doesn't contain info about JBDS-IS 8.0.4 (the latest info is about 8.0.3).
> Please update the list of released components as follows
> Teiid Designer 9.0.4.Final
> ModeShape 3.7.0.Final
> jBPM3 4.5.200.Final
> BPEL 1.3.100.Final_1.0.5.Final
> BPMN2 1.1.3.Final
> Drools 6.2.0.Final
> ESB 1.5.530.Final
> SwitchYard 2.0.1.Final
> Fuse Tooling 7.3.2.Final
> Note: The list of Early Access Components is empty (SwitchYard and fuse tooling was moved from EA to GA)
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (JBIDE-21443) NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21443?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich commented on JBIDE-21443:
-----------------------------------------------
[~akrambenaissi], could you please add a screenshot showing the view with selection on which wizard was invoked and the wizard before clicking 'Finish'.
> NullPointerException when trying to import a BuildConfig as a new application from OpenShift 3
> ----------------------------------------------------------------------------------------------
>
> Key: JBIDE-21443
> URL: https://issues.jboss.org/browse/JBIDE-21443
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Environment: OSX
> JBDS
> OpenShift origin 1.1.0.1
> Reporter: Akram Ben Aissi
> Priority: Blocker
> Attachments: eclipse.log
>
>
> When trying to import a project from a BuildConfig (right clic import as new project), I get a NullPointerException after clicking Finish.
> Same issue occurs when clicking next, and changing the destination folder for anything that exists or does not exist
> eclipse.log is attached.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months