[JBoss JIRA] (JBIDE-23320) New server window server type picker is single line long on Cinnamon
by Jeff MAURY (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23320?page=com.atlassian.jira.plugi... ]
Jeff MAURY commented on JBIDE-23320:
------------------------------------
Tested on Fedora 24 using Eclipse JEE Neon.1a. Did not notice any change after installing WTP 3.8.2
> New server window server type picker is single line long on Cinnamon
> --------------------------------------------------------------------
>
> Key: JBIDE-23320
> URL: https://issues.jboss.org/browse/JBIDE-23320
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server, upstream
> Environment: Fedora 24 x86-64
> Cinnamon 3.0.7
> Linux 4.7.6
> JBDS 10.1.0.GA
> Reporter: Michal Jurc
> Assignee: Rob Stryker
> Fix For: 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: jbds-10.1-new-server.png
>
>
> In JBoss Developer Studio 10.1.0.GA, the New Server window server type choice only displays single server at time without scrolling which is uncomfortable to navigate through.
> Screenshot attached.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-21857:
------------------------------------------
[~rob.stryker] [~mlabuda] If the above - the "Hot Code Replace Failed" dialog now always shows up, also for non-structural changes to classes - is confirmed as a bug, I'd close this issue and open a new one. The basics work for me but has issues.
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip, hot-code-replace-failed.png, jmx-connected-adapter-synchronized.png
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-21857:
-------------------------------------
Attachment: jmx-connected-adapter-synchronized.png
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip, hot-code-replace-failed.png, jmx-connected-adapter-synchronized.png
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-21857 at 11/30/16 2:17 PM:
--------------------------------------------------------------------
[~mlabuda] The hot code replace dialog shows up for me even if I dont manually connect the JMX.
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
I filed the issues due to its poor usability to JBIDE-23602.
# EXEC: in "Hot Code Replace Failed" dialog: hit "Restart Module"
# EXEC: unfold the server adapter and see in what state the JMX node and the adapter is:
Result:
!jmx-connected-adapter-synchronized.png!
The adapter is synchronized for me, and the JMX is now connected.
[~mlabuda] What makes you think that debugging is out-of-sync as stated in the steps above?
I though can confirm that any change from now on - even non-structural changes - will trigger the "Hot Code Replace Failed" dialog.
[~rob.stryker] Can you please chime in and comment the fact that the dialog now always shows up?
was (Author: adietish):
[~mlabuda] The hot code replace dialog shows up for me even if I dont manually connect the JMX.
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
I filed the issues due to its poor usability to JBIDE-23602.
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip, hot-code-replace-failed.png
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-21857 at 11/30/16 2:05 PM:
--------------------------------------------------------------------
[~mlabuda] The hot code replace dialog shows up for me even if I dont manually connect the JMX.
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
I filed the issues due to its poor usability to JBIDE-23602.
was (Author: adietish):
[~mlabuda] The hot code replace dialog shows up for me even if I dont manually connect the JMX.
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip, hot-code-replace-failed.png
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-21857 at 11/30/16 2:04 PM:
--------------------------------------------------------------------
[~mlabuda] The hot code replace dialog shows up for me even if I dont manually connect the JMX.
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
was (Author: adietish):
[~mlabuda] The hot code replace dialog shows up for me even if I dont manually connect the JMX.
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip, hot-code-replace-failed.png
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-21857 at 11/30/16 2:00 PM:
--------------------------------------------------------------------
[~mlabuda] The hot code replace dialog shows up for me even if I dont manually connect the JMX.
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
was (Author: adietish):
[~mlabuda] The hot code replace dialog shows up for me even if JMX is not connected. I suspect the JMX node to reflect the fact that the MBeans are loaded or not. Can you please confirm, [~rob.stryker] ?
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip, hot-code-replace-failed.png
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-21857:
-------------------------------------
Attachment: hot-code-replace-failed.png
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip, hot-code-replace-failed.png
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-21857) Hot code replacement doesn't work on OpenShift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21857?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-21857:
------------------------------------------
[~mlabuda] The hot code replace dialog shows up for me even if JMX is not connected. I suspect the JMX node to reflect the fact that the MBeans are loaded or not. Can you please confirm, [~rob.stryker] ?
The steps for me:
# ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
# EXEC: open HelloService and change it to the following:
{code:title=HelloService}
public class HelloService {
private static final String MAGIC_STRING = "42";
String createHelloMessage(String name) {
return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
}
}
{code}
and save the editor
Result:
"Hot code replace failed" dialog pops up, which is expected.
!hot-code-replace-failed.png!
> Hot code replacement doesn't work on OpenShift
> ----------------------------------------------
>
> Key: JBIDE-21857
> URL: https://issues.jboss.org/browse/JBIDE-21857
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.Beta2
> Reporter: Fred Bricon
> Assignee: Rob Stryker
> Fix For: 4.4.2.Final, 4.4.3.AM1, 4.5.0.AM1
>
> Attachments: HCRFailure.zip
>
>
> When enabling debug mode on an EAP server deployed on OpenShift, locally changing a class file will :
> - work sometimes when only the content of the method changed, but could fail in some other occasions with the Debugger saying the JDK is out of sync
> - will always fail if a method signature changed, the debugger saying JDK is out of sync
> Restarting the deployed module (with the .dodeploy flag) doesn't fixes the issue (as opposed to the same tweak ahen running on a local EAP server)
> This may be caused by running OpenJDK? Does it support the same level of debugging as Oracle JDK?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month
[JBoss JIRA] (JBIDE-23602) Server adapter: Hot code replace failed dialog has poor usability
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23602?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-23602:
-------------------------------------
Attachment: hot-code-replace-failed-2.png
> Server adapter: Hot code replace failed dialog has poor usability
> -----------------------------------------------------------------
>
> Key: JBIDE-23602
> URL: https://issues.jboss.org/browse/JBIDE-23602
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.4.2.Final
> Reporter: Andre Dietisheim
> Fix For: 4.4.3.AM1
>
> Attachments: hot-code-replace-failed-2.png
>
>
> steps to reproduce:
> # ASSERT: have jboss-helloworld running in OpenShift (create it via eap64-basic-s2i template), the source code for it imported to a workspace project and a server adapter for it
> # EXEC: open HelloService and change it to the following:
> {code:title=HelloService}
> public class HelloService {
> private static final String MAGIC_STRING = "42";
>
> String createHelloMessage(String name) {
> return "Hello " + name + ", the magic string is " + MAGIC_STRING + "!";
> }
> }
> {code}
> and save the editor
> Result:
> "Hot code replace failed" dialog pops up, which is expected.
> !hot-code-replace-failed-2.png!
> But it's usability is poor:
> * the affected module is not fully shown (half of it cut off)
> * there's no margin on the right border of the dialog
> * No button is pre-selected so that I can simply hit Return to pick a sane default choice (I have to hit tap to get to the button I want to press or use my mouse).
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 1 month