[JBoss JIRA] (JBIDE-24783) Update default registry url for cdk 3
by Martin Malina (JIRA)
[ https://issues.jboss.org/browse/JBIDE-24783?page=com.atlassian.jira.plugi... ]
Martin Malina closed JBIDE-24783.
---------------------------------
I thought you'd prefer a new jira as opposed to reopening this one. So here's a new jira: JBIDE-24884
> Update default registry url for cdk 3
> -------------------------------------
>
> Key: JBIDE-24783
> URL: https://issues.jboss.org/browse/JBIDE-24783
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk, openshift
> Affects Versions: 4.5.0.AM2
> Reporter: Martin Malina
> Assignee: Rob Stryker
> Fix For: 4.5.1.AM1
>
>
> Yesterday I started cdk 3 and it seemed to start ok, but was not really ok.
> The registry command didn't really work:
> {code}
> $ ./minishift openshift registry
> No information found for 'service/docker-registry'
> {code}
> The result is that the openshift connection details showed this under Image Registry URL:
> https://hub.openshift.rhel-cdk.10.1.2.2.xip.io
> This seems like the default value for cdk 2. I think we should update the default value for cdk 3. Or is this simply a default value for an openshift connection? In any case, this should use the cdk 3 value.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months
[JBoss JIRA] (JBIDE-24884) Log an error if detected cdk registry is wrong
by Martin Malina (JIRA)
Martin Malina created JBIDE-24884:
-------------------------------------
Summary: Log an error if detected cdk registry is wrong
Key: JBIDE-24884
URL: https://issues.jboss.org/browse/JBIDE-24884
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdk, openshift
Affects Versions: 4.5.1.AM1
Reporter: Martin Malina
Assignee: Rob Stryker
This is a followup of JBIDE-24783.
When minishift openshift registry is unable to return a valid registry, the tooling should log an error. JBIDE-24783 was supposed to add this thing (along with removing the default value), but I was not able to trigger the error.
The workflow is:
Once cdk is started in eclipse, the cdk tooling will create the openshift connection and run minishift openshift registry to figure out which registry to use. But in my testing even if this returns "bla bla", the tooling will happily accept it.
To test this, you can use a simple minishift wrapper such as this:
{code}
#!/bin/bash
case $* in
"openshift registry")
echo bla bla
exit 1
;;
*)
/Users/rasp/jbossqa/cdk/cdk-3.1.0/minishift $*
esac
{code}
You can also remove the "exit 1" to check what happens with zero exit code.
In my opinion any of these should trigger an error:
a) minishift openshift registry finishes with a non-zero code
b) the returned string is not a valid url
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months
[JBoss JIRA] (JBIDE-24783) Update default registry url for cdk 3
by Martin Malina (JIRA)
[ https://issues.jboss.org/browse/JBIDE-24783?page=com.atlassian.jira.plugi... ]
Martin Malina edited comment on JBIDE-24783 at 8/23/17 6:50 AM:
----------------------------------------------------------------
I wanted to verify this and when I use a simple wrapper around minishift to break this (i.e. print "bla bla" for minishift openshift registry), openshift connection then has "http://bla bla" set up as the registry.
I think my version of the plugin should have the fix: org.jboss.tools.openshift.cdk.server_3.4.1.v20170822-2117.jar
It's the same version as in the latest openshift updatesite: http://download.jboss.org/jbosstools/oxygen/snapshots/builds/jbosstools-o...
[~rob.stryker], what will trigger the error message? From the code it seems that as long as the command returns something, you will use it. Unless there is an IOException which I'm not sure when that would happen. Shouldn't you at least check the validity of the url? Because it seems that right now you will happily take any string at all, even if it's a message saying there is no url.
was (Author: mmalina):
I wanted to verify this and when I use a simple wrapper around minishift to break this (i.e. print "bla bla" for minishift openshift registry), openshift connection then has "http://bla bla" set up as the registry.
But it looks like I don't have the commit yet:
org.jboss.tools.openshift.cdk.server_3.4.1.v20170822-2117.jar
I'll have to wait for a new build of devstudio.
But this brings a question:
[~rob.stryker], what will trigger the error message? From the code it seems that as long as the command returns something, you will use it. Unless there is an IOException which I'm not sure when that would happen. Shouldn't you at least check the validity of the url? Because it seems that right now you will happily take any string at all, even if it's a message saying there is no url.
> Update default registry url for cdk 3
> -------------------------------------
>
> Key: JBIDE-24783
> URL: https://issues.jboss.org/browse/JBIDE-24783
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk, openshift
> Affects Versions: 4.5.0.AM2
> Reporter: Martin Malina
> Assignee: Rob Stryker
> Fix For: 4.5.1.AM1
>
>
> Yesterday I started cdk 3 and it seemed to start ok, but was not really ok.
> The registry command didn't really work:
> {code}
> $ ./minishift openshift registry
> No information found for 'service/docker-registry'
> {code}
> The result is that the openshift connection details showed this under Image Registry URL:
> https://hub.openshift.rhel-cdk.10.1.2.2.xip.io
> This seems like the default value for cdk 2. I think we should update the default value for cdk 3. Or is this simply a default value for an openshift connection? In any case, this should use the cdk 3 value.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months
[JBoss JIRA] (JBIDE-24783) Update default registry url for cdk 3
by Martin Malina (JIRA)
[ https://issues.jboss.org/browse/JBIDE-24783?page=com.atlassian.jira.plugi... ]
Martin Malina commented on JBIDE-24783:
---------------------------------------
I wanted to verify this and when I use a simple wrapper around minishift to break this (i.e. print "bla bla" for minishift openshift registry), openshift connection then has "http://bla bla" set up as the registry.
But it looks like I don't have the commit yet:
org.jboss.tools.openshift.cdk.server_3.4.1.v20170822-2117.jar
I'll have to wait for a new build of devstudio.
But this brings a question:
[~rob.stryker], what will trigger the error message? From the code it seems that as long as the command returns something, you will use it. Unless there is an IOException which I'm not sure when that would happen. Shouldn't you at least check the validity of the url? Because it seems that right now you will happily take any string at all, even if it's a message saying there is no url.
> Update default registry url for cdk 3
> -------------------------------------
>
> Key: JBIDE-24783
> URL: https://issues.jboss.org/browse/JBIDE-24783
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk, openshift
> Affects Versions: 4.5.0.AM2
> Reporter: Martin Malina
> Assignee: Rob Stryker
> Fix For: 4.5.1.AM1
>
>
> Yesterday I started cdk 3 and it seemed to start ok, but was not really ok.
> The registry command didn't really work:
> {code}
> $ ./minishift openshift registry
> No information found for 'service/docker-registry'
> {code}
> The result is that the openshift connection details showed this under Image Registry URL:
> https://hub.openshift.rhel-cdk.10.1.2.2.xip.io
> This seems like the default value for cdk 2. I think we should update the default value for cdk 3. Or is this simply a default value for an openshift connection? In any case, this should use the cdk 3 value.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months
[JBoss JIRA] (JBIDE-24883) Python on windows slaves
by Pavol Srna (JIRA)
Pavol Srna created JBIDE-24883:
----------------------------------
Summary: Python on windows slaves
Key: JBIDE-24883
URL: https://issues.jboss.org/browse/JBIDE-24883
Project: Tools (JBoss Tools)
Issue Type: Task
Components: qa
Reporter: Pavol Srna
Assignee: Pavol Srna
Fix For: 4.5.1.AM2
python installation needs to be scripted in mwqa-cloud-slaves to be installed automatically when provisioning from openstack.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months
[JBoss JIRA] (JBIDE-24882) Can't rebuild releng image
by Lukáš Valach (JIRA)
Lukáš Valach created JBIDE-24882:
------------------------------------
Summary: Can't rebuild releng image
Key: JBIDE-24882
URL: https://issues.jboss.org/browse/JBIDE-24882
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: build
Affects Versions: 4.5.1.AM1
Reporter: Lukáš Valach
Assignee: Lukáš Valach
Fix For: 4.5.1.AM1
It is not possible to rebuild "rhel7-x64-jbds-releng" image because update image pipeline \[1\] fails during cloning of mwqa-env-suite repository \[2\]
\[1\] https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/view/Central...
\[2\] https://gitlab.mw.lab.eng.bos.redhat.com/dev-platform/mwqa-env-suite
{code}
MW QA environment configured
+ echo 'MW QA environment configured'
+ test_repo=git@gitlab.mw.lab.eng.bos.redhat.com:dev-platform/mwqa-env-suite.git
+ test='git clone git@gitlab.mw.lab.eng.bos.redhat.com:dev-platform/mwqa-env-suite.git && ./mwqa-env-suite/run.sh jbds docker releng'
+ ssh -o PasswordAuthentication=no -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o Loglevel=error -i /tmp/os.key.QYcvv9Sg hudson(a)10.8.242.82 'git clone git@gitlab.mw.lab.eng.bos.redhat.com:dev-platform/mwqa-env-suite.git && ./mwqa-env-suite/run.sh jbds docker releng'
Cloning into 'mwqa-env-suite'...
Bad owner or permissions on /home/hudson/.ssh/config
fatal: Could not read from remote repository.
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months
[JBoss JIRA] (JBIDE-24881) Strange strings in cdk's PATH environmental variable
by Martin Malina (JIRA)
[ https://issues.jboss.org/browse/JBIDE-24881?page=com.atlassian.jira.plugi... ]
Martin Malina updated JBIDE-24881:
----------------------------------
Description:
Hardy was trying to test cdk in eclipse and got an error when starting cdk:
{code}
org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 67; Character reference "" is an invalid XML character. occurred while reading launch configuration file: /Volumes/Gram/Hardy/tmp/workspace/.metadata/.plugins/org.eclipse.debug.core/.launches/Container Development Environment 3.launch.
Character reference "" is an invalid XML character.
{code}
It turns out that his PATH env var for cdk is this (from JBIDE-24222):
{code}
]1337;RemoteHost=hardy@nineveh.lan]1337;CurrentDir=/Volumes/Gram/Hardy/tmp/devstudio/studio/devstudio.app/Contents/MacOS]1337;ShellIntegrationVersion=3;shell=bash/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Applications/Wireshark.app/Contents/MacOS:/Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home/bin/:/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/Users/hardy/.rvm/bin:/Users/hardy/.rvm/bin
{code}
This was in devstudio nightly. So I checked too and I have a similar problem. In my case I have this in the PATH variable in launch config:
{code}
Restored session: Tue Aug 22 15:34:26 CEST 2017
/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin/bin
Saving session...
...saving history...
...completed.:/Users/rasp/jbossqa/cdk/cdk-3.1.0
{code}
So something in the way you get the PATH is wrong. I would say this is definitely a regression - I remember seeing correct PATH there in the past.
was:
Hardy was trying to test cdk in eclipse and got an error when starting cdk:
{code}
org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 67; Character reference "" is an invalid XML character. occurred while reading launch configuration file: /Volumes/Gram/Hardy/tmp/workspace/.metadata/.plugins/org.eclipse.debug.core/.launches/Container Development Environment 3.launch.
Character reference "" is an invalid XML character.
{code}
It turns out that his PATH env var for cdk is this (from JBIDE-24222):
{code}
]1337;RemoteHost=hardy@nineveh.lan]1337;CurrentDir=/Volumes/Gram/Hardy/tmp/devstudio/studio/devstudio.app/Contents/MacOS]1337;ShellIntegrationVersion=3;shell=bash/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Applications/Wireshark.app/Contents/MacOS:/Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home/bin/:/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/Users/hardy/.rvm/bin:/Users/hardy/.rvm/bin
{code}
This was in devstudio nightly. So I checked too and I have a similar problem. In my case I have this in the PATH variable in launch config:
{code}
Restored session: Tue Aug 22 15:34:26 CEST 2017
/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin/bin
Saving session...
...saving history...
...completed.:/Users/rasp/jbossqa/cdk/cdk-3.1.0
{code}
So something in the way you get the PATH is wrong.
> Strange strings in cdk's PATH environmental variable
> ----------------------------------------------------
>
> Key: JBIDE-24881
> URL: https://issues.jboss.org/browse/JBIDE-24881
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk
> Affects Versions: 4.5.1.AM1
> Reporter: Martin Malina
> Assignee: Rob Stryker
>
> Hardy was trying to test cdk in eclipse and got an error when starting cdk:
> {code}
> org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 67; Character reference "" is an invalid XML character. occurred while reading launch configuration file: /Volumes/Gram/Hardy/tmp/workspace/.metadata/.plugins/org.eclipse.debug.core/.launches/Container Development Environment 3.launch.
> Character reference "" is an invalid XML character.
> {code}
> It turns out that his PATH env var for cdk is this (from JBIDE-24222):
> {code}
> ]1337;RemoteHost=hardy@nineveh.lan]1337;CurrentDir=/Volumes/Gram/Hardy/tmp/devstudio/studio/devstudio.app/Contents/MacOS]1337;ShellIntegrationVersion=3;shell=bash/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Applications/Wireshark.app/Contents/MacOS:/Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home/bin/:/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/Users/hardy/.rvm/bin:/Users/hardy/.rvm/bin
> {code}
> This was in devstudio nightly. So I checked too and I have a similar problem. In my case I have this in the PATH variable in launch config:
> {code}
> Restored session: Tue Aug 22 15:34:26 CEST 2017
> /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin/bin
> Saving session...
> ...saving history...
> ...completed.:/Users/rasp/jbossqa/cdk/cdk-3.1.0
> {code}
> So something in the way you get the PATH is wrong. I would say this is definitely a regression - I remember seeing correct PATH there in the past.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months
[JBoss JIRA] (JBIDE-24881) Strange strings in cdk's PATH environmental variable
by Martin Malina (JIRA)
[ https://issues.jboss.org/browse/JBIDE-24881?page=com.atlassian.jira.plugi... ]
Martin Malina updated JBIDE-24881:
----------------------------------
Workaround Description:
The workaround is to go to the launch config and change the PATH to something reasonable:
1. Open cdk server editor by double-clicking the CDK adapter in Servers view
2. In the server editor, click Open launch configuration (almost at the top)
3. In the launch config window, go to the Environment tab
4. Edit the PATH variable to something reasonable. Apply and close.
> Strange strings in cdk's PATH environmental variable
> ----------------------------------------------------
>
> Key: JBIDE-24881
> URL: https://issues.jboss.org/browse/JBIDE-24881
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdk
> Affects Versions: 4.5.1.AM1
> Reporter: Martin Malina
> Assignee: Rob Stryker
>
> Hardy was trying to test cdk in eclipse and got an error when starting cdk:
> {code}
> org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 67; Character reference "" is an invalid XML character. occurred while reading launch configuration file: /Volumes/Gram/Hardy/tmp/workspace/.metadata/.plugins/org.eclipse.debug.core/.launches/Container Development Environment 3.launch.
> Character reference "" is an invalid XML character.
> {code}
> It turns out that his PATH env var for cdk is this (from JBIDE-24222):
> {code}
> ]1337;RemoteHost=hardy@nineveh.lan]1337;CurrentDir=/Volumes/Gram/Hardy/tmp/devstudio/studio/devstudio.app/Contents/MacOS]1337;ShellIntegrationVersion=3;shell=bash/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/opt/local/bin:/opt/local/sbin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Applications/Wireshark.app/Contents/MacOS:/Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home/bin/:/opt/local/bin:/opt/local/sbin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648/bin:/Users/hardy/.rvm/gems/ruby-2.0.0-p648@global/bin:/Users/hardy/.rvm/rubies/ruby-2.0.0-p648/bin:/Users/hardy/work/developer-platform/openshift/oc/1.3.1:/opt/java/wildfly/bin:/opt/java/tomcat/bin:/opt/java/ant/bin:/opt/java/maven/bin:/opt/java/scala/bin:/opt/java/gradle/bin:/Applications/Development/Vagrant/bin:/Users/hardy/work/developer-platform/cdk-3/go/bin:/Users/hardy/bin:/opt/openshift:/opt/local/lib/mariadb/bin:/Applications/Internet/Firefox.app/Contents/MacOS:/Applications/Dev/Editor/Sublime Text.app/Contents/SharedSupport/bin:/Users/hardy/.rvm/bin:/Users/hardy/.rvm/bin
> {code}
> This was in devstudio nightly. So I checked too and I have a similar problem. In my case I have this in the PATH variable in launch config:
> {code}
> Restored session: Tue Aug 22 15:34:26 CEST 2017
> /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin/bin
> Saving session...
> ...saving history...
> ...completed.:/Users/rasp/jbossqa/cdk/cdk-3.1.0
> {code}
> So something in the way you get the PATH is wrong.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 7 months