Author Topic: Issues in build window after manually sshing to build machine there  (Read 12559 times)

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528
Re: Issues in build window after manually sshing to build machine there
« Reply #45 on: February 02, 2022, 09:58:08 PM »
Prior to the latest build with the fix I put in, you were able to get this "after_color_out_char1_not_here" bug to happen fairly easily. Now, you haven't been able to make this happen. Is this an accurate assessment? 

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #46 on: February 02, 2022, 10:09:47 PM »
Yes I have not been able to reproduce the issue. I don't see your "say" statement or the <SOH> with your debug load. I have done many builds I would have expected to see it by now.

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528
Re: Issues in build window after manually sshing to build machine there
« Reply #47 on: February 03, 2022, 02:09:28 AM »
Here's installer #7:

http://support.slickedit.com/outbound/2601/se_26000100_linux64_build_fix_2022_02_02.tar.gz

This installer has no debug in it but has the same fix that was in the last debug installer. The latest hot fixes are rolled into this installer. That just means you don't need to install the latest hot fix build unless it occurs after the date this installer was built.

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #48 on: February 03, 2022, 02:19:59 PM »
Thanks. I will go ahead and use installer #7. I stopped using the debug load because it would run out of memory. Sounds like installer #7 won't run out of memory since debug is removed.

I didn't notice there was a hotfix for 26.0.1. I usually get a message about new hotfixes because I am subscribed to:

https://community.slickedit.com/index.php/topic,6567.0.html

But looks like that thread was not updated when new hotfix was available.


rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #49 on: February 07, 2022, 07:31:57 PM »
I just got some of the <SOH> or \1 with the installer #7. So looks like the issue is still there. I changed which build I'm doing today. I will go back to using your last debug load see if I can catch it.

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528
Re: Issues in build window after manually sshing to build machine there
« Reply #50 on: February 07, 2022, 07:38:39 PM »
Ok. Switching back to the previous installer (#6) will provide the debug I need.

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #51 on: April 01, 2022, 02:00:05 PM »
Unfortunately for the past few weeks I haven't done much coding. But with a few days of usage it seems that the issue does not reproduce with the debug installer (#6), but it does reproduce with installer #7.

Furthermore using installer #7 I observed it happening even without sshing into my build machine and using the default se shell.

I think something in installer #6 is preventing the problem from occurring. Maybe another debug installer is needed to track this down?

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528
Re: Issues in build window after manually sshing to build machine there
« Reply #52 on: April 01, 2022, 03:52:03 PM »
Only difference is no debug generation. I’ll double check.

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #54 on: April 13, 2022, 06:20:32 PM »
It doesn't repro with installer #8, but it does repro with installer #7.

I think whatever debug you added between installer #5 and #6 is causing the issue to not occur.

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528
Re: Issues in build window after manually sshing to build machine there
« Reply #55 on: April 13, 2022, 06:48:43 PM »
The debug must change the timing. It’s just generating xml data in memory which should be fast.

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #56 on: May 20, 2022, 02:06:59 PM »
FYI: Still seeing this issue in 26.0.2 with Patrick's commit in: https://community.slickedit.com/index.php/topic,18828.msg74731.html#msg74731 which has build date May 9, 2022.

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #57 on: June 03, 2022, 02:17:55 PM »
It is happening quite often, kind of annoying. When I want to manually enter a command I have to manually remove the <SOH>. It happens without sshing in first (although my build script does do ssh).

Is there another way to add debug that could not make the problem go away?

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528
Re: Issues in build window after manually sshing to build machine there
« Reply #58 on: June 03, 2022, 02:56:47 PM »
How about I build an installer that generates the debug BUT doesn't write the data out unless a problem is detected? In addition, the data will need to truncated from time to time since the data generated can be very large.

I'm guessing the debug data changes the timing and this bug is DEFINITELY dependent on timing. It could be a compiler code generation bug but I haven't seen one of those in a very long time.

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
Re: Issues in build window after manually sshing to build machine there
« Reply #59 on: June 03, 2022, 03:20:11 PM »
OK. I thought I remembered from a past post that you were writing xml (to a file?) when bug is detected and that changes the timing? Maybe just save a few global variables when bug is detected to not change the timing much? Then write the xml later? Maybe this is already what you are proposing?