Build hangs on "Target Environment update started" - genexus

I have a couple of projects, one created with genexus 17U6 and one with 17U10 that run extremely slowly. In particular they hang several minutes on "Target Environment update started" when building. Both projects use WWP, other projects work fine. I've also tried creating new projects and importing objects from old ones, but the problem persists. What can it depend on? Is there any way to see what is slowing them down?
EDIT: Logging of the build
2022-12-12 17:55:43,654 [1] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 17:55:44,043 [1] INFO GeneXus - Flag OFF C:\Program Files (x86)\GeneXus\GeneXus17-U10\webvalid.flag
2022-12-12 17:55:44,330 [1] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 17:55:44,716 [1] DEBUG GeneXus - Product '1', Version '27' [Callback=True]
2022-12-12 17:55:44,721 [1] DEBUG GeneXus - Licensed without restrictions.
2022-12-12 17:55:50,379 [1] INFO GeneXus - == Pattern generation (WorkWithPlusWBottoni) started ==
2022-12-12 17:55:50,381 [1] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 17:55:50,461 [1] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 17:55:55,269 [1] DEBUG GeneXus - Releasing Saving lock for RTSNET\nicola.pilli
2022-12-12 17:55:57,476 [1] INFO GeneXus - Saving Web Panel 'WBottoni'...
2022-12-12 17:55:57,520 [1] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 17:56:03,135 [1] DEBUG GeneXus - Releasing Saving lock for RTSNET\nicola.pilli
2022-12-12 17:56:03,135 [1] INFO GeneXus - succeeded.
2022-12-12 17:56:03,344 [1] DEBUG GeneXus - Releasing Saving lock for RTSNET\nicola.pilli
2022-12-12 17:56:03,344 [1] INFO GeneXus - == Pattern generation (WorkWithPlusWBottoni) ended successfully ==
2022-12-12 17:56:06,998 [1] DEBUG GeneXus - Releasing Saving lock for RTSNET\nicola.pilli
2022-12-12 17:56:07,014 [1] DEBUG GeneXus - Releasing Saving lock for RTSNET\nicola.pilli
2022-12-12 17:56:07,201 [1] DEBUG GeneXus - BuildCommandFactory.Create(BuildCalled, ContinueOnErrorGeneration, BuildProcess, Execute, ConcurrentWinte)
2022-12-12 17:56:07,396 [1] INFO GeneXus - ---> Command: RunMainObject - Elapsed time: 00:00:24.9896692
2022-12-12 17:56:07,632 [14] INFO GeneXus - == Run WBottoni started ==
2022-12-12 17:56:07,724 [14] DEBUG GeneXus - Acquiring CopyModel lock for RTSNET\nicola.pilli
2022-12-12 17:56:07,981 [14] DEBUG GeneXus - [ModuleManager] Build using GeneXus module version '3.10.4.160901'
2022-12-12 17:56:08,064 [14] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 17:56:08,091 [14] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 17:56:08,191 [14] INFO GeneXus - == Copy Module 'GeneXus' started ==
2022-12-12 17:56:08,260 [14] INFO GeneXus - == Copy Module 'GeneXus' ended successfully ==
2022-12-12 17:56:08,317 [14] DEBUG GeneXus - Acquiring CopyModel lock for RTSNET\nicola.pilli
2022-12-12 17:56:08,407 [14] INFO GeneXus - Flag OFF C:\Program Files (x86)\GeneXus\GeneXus17-U10\docker.flag
2022-12-12 17:56:08,615 [14] INFO GeneXus - Flag OFF C:\Program Files (x86)\GeneXus\GeneXus17-U10\TimeOnlyCompatibility.flag
2022-12-12 17:56:09,618 [14] INFO GeneXus - == Target Environment update started ==
2022-12-12 17:58:57,203 [14] INFO GeneXus - ---> CopyModelCommand:
with tgt as (select * from ModelEntityVersion where ModelId = #ModelIdTarget) merge tgt
using (select * from ModelEntityVersion where ModelId = #ModelIdSource) src
on tgt.EntityTypeId = src.EntitytypeId and tgt.EntityId = src.EntityId
when not matched by target
then insert values(#ModelIdTarget, EntityTypeId, EntityId, EntityVersionId, #Timestamp, ModelEntityVersionName, ModelEntityVersionDescription, ModelParentEntityTypeId, ModelParentEntityId, ModelUserId)
when matched and (tgt.EntityVersionId != src.EntityVersionId or tgt.ModelParentEntityId != src.ModelParentEntityId or tgt.ModelParentEntityTypeId != src.ModelParentEntityTypeId)
then update set tgt.EntityVersionId = src.EntityVersionId, tgt.ModelEntityVersionName = src.ModelEntityVersionName, tgt.ModelEntityVersionDescription = src.ModelEntityVersionDescription, tgt.ModelEntityVersionTimestamp = #Timestamp, tgt.ModelParentEntityId = src.ModelParentEntityId, tgt.ModelParentEntityTypeId = src.ModelParentEntityTypeId, tgt.ModelUserId = src.ModelUserId
when not matched by source
then delete;
ModelIdSource:1
ModelIdTarget:2
Timestamp:12/12/2022 16:56:09
- Elapsed time: 00:02:47.3150027
2022-12-12 17:58:57,250 [14] INFO GeneXus - ---> CopyModelCommand:
update ModelEntityVersion set ModelEntityVersionTimestamp = #Timestamp from ModelEntityVersion mev inner join
(
select mcr.ModelId, mcr.FromEntityTypeId, mcr.FromEntityId from
(select ModelId, ToEntityTypeId, ToEntityId, FromEntityTypeId, FromEntityId from ModelCrossReference where ModelId = #ModelIdTarget and ReferenceType >= #ReferenceType and ToEntityTypeId in (12,13,14,15,16,17,6,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,32,32,32,33,34,35,36,36,36,37,38,39,40,41,41,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,8,59,60,61,62,62,63,64,65,66,67,68,69)) as mcr
left outer join
(select #ModelIdTarget as ModelId, EntityTypeId, EntityId from ModelEntityVersion where ModelId = #ModelIdSource and EntityTypeId in (12,13,14,15,16,17,6,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,32,32,32,33,34,35,36,36,36,37,38,39,40,41,41,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,8,59,60,61,62,62,63,64,65,66,67,68,69)) mevTo
on mcr.ModelId = mevTo.ModelId and mcr.ToEntityTypeId = mevTo.EntityTypeId and mcr.ToEntityId = mevTo.EntityId
where mevTo.ModelId is null
) as mcr on mev.ModelId = mcr.ModelId and mev.EntityTypeId = mcr.FromEntityTypeId and mev.EntityId = mcr.FromEntityId
where mev.ModelId = #ModelIdTarget and mev.EntityTypeId in (12,13,14,15,16,17,6,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,32,32,32,33,34,35,36,36,36,37,38,39,40,41,41,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,8,59,60,61,62,62,63,64,65,66,67,68,69)
ModelIdSource:1
ModelIdTarget:2
Timestamp:12/12/2022 16:56:09
ReferenceType:2
- Elapsed time: 00:00:00.0487742
2022-12-12 18:02:07,296 [14] INFO GeneXus - ---> CopyModelCommand:
with tgt as (select * from ModelCrossReference where ModelId = #ModelIdTarget) merge tgt
using (select * from ModelCrossReference where ModelId = #ModelIdSource) src
on tgt.ToEntityTypeId = src.ToEntityTypeId and tgt.ToEntityId = src.ToEntityId and tgt.FromEntityTypeId = src.FromEntityTypeId and tgt.FromEntityId = src.FromEntityId and tgt.LinkType = src.LinkType and tgt.LinkTypeDetailId = src.LinkTypeDetailId
when not matched by target
then insert values(#ModelIdTarget, ToEntityTypeId, ToEntityId, FromEntityTypeId, FromEntityId, LinkType, LinkTypeDetailId, LinkTypeInfo, ReferenceType)
when matched and (tgt.LinkTypeInfo != src.LinkTypeInfo or tgt.ReferenceType != src.ReferenceType)
then update set tgt.LinkTypeInfo = src.LinkTypeInfo, tgt.ReferenceType = src.ReferenceType
when not matched by source
then delete;
ModelIdSource:1
ModelIdTarget:2
- Elapsed time: 00:03:10.0350689
2022-12-12 18:02:07,304 [14] INFO GeneXus - ---> CommandEngine.CopyModel - Elapsed time: 00:05:57.4227656
2022-12-12 18:02:07,883 [14] ERROR GeneXus - Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has been terminated.
2022-12-12 18:02:07,884 [14] ERROR GeneXus - Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has been terminated.
System.Data.SqlClient.SqlException (0x80131904): Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has been terminated. ---> System.ComponentModel.Win32Exception (0x80004005): Tempo di attesa scaduto
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Artech.Udm.Layers.Data.SQL.CustomCommand.ExecuteNonQuery()
at Artech.Udm.Layers.Data.SQL.SQLCommands.ExecuteCopyModelCommand(String sqlCommand, Int32 modelIdSource, Int32 modelIdTarget, QueryParm[] queryParms)
at Artech.Udm.Layers.Data.SQL.SQLCommands.Artech.Udm.Architecture.Common.IUdmCommandEngine.CopyModel(Int32 modelIdSource, Int32 modelIdTarget, CopyModelOptions options, DateTime timestamp, Int32 lowerWeakExternalRefType, IEnumerable`1 objectTypesIds)
at Artech.Udm.Framework.UdmKnowledgeBase.CopyModel(Model source, Model target, CopyModelOptions options, IEnumerable`1 objectTypes, IEnumerable`1 copyOutputIds)
ClientConnectionId:48d68e66-87c8-47f0-82bc-dbfd18a17c11
Error Number:-2,State:0,Class:11
2022-12-12 18:02:07,923 [14] ERROR GeneXus - Tempo di attesa scaduto
System.ComponentModel.Win32Exception (0x80004005): Tempo di attesa scaduto
2022-12-12 18:02:19,224 [14] INFO GeneXus - ---> CopyModelCommand:
delete tgt from (select * from ModelEntityOutput where ModelId = #ModelIdTarget and OutputTypeId in (1711,1712,400,6192,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510)) as tgt left join
(select EntityTypeId, EntityId, OutputEntityVersionId, OutputTypeId, OutputTypeVersion, OutputTimestamp from ModelEntityOutput where ModelId = #ModelIdSource and OutputTypeId in (1711,1712,400,6192,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510)) src
on tgt.EntityTypeId = src.EntityTypeId and tgt.EntityId = src.EntityId and tgt.OutputEntityVersionId = src.OutputEntityVersionId and tgt.OutputTypeId = src.OutputTypeId and tgt.OutputTypeVersion = src.OutputTypeVersion
where src.OutputTimestamp is null or tgt.OutputTimestamp <> src.OutputTimestamp
ModelIdSource:1
ModelIdTarget:2
- Elapsed time: 00:00:00.0258485
2022-12-12 18:02:19,242 [14] INFO GeneXus - ---> CopyModelCommand:
insert into ModelEntityOutput (ModelId, EntityTypeId, EntityId, OutputEntityVersionId, OutputTypeId, OutputTypeVersion, OutputTimestamp, OutputData)
select #ModelIdTarget as ModelId, src.EntityTypeId, src.EntityId, src.OutputEntityVersionId, src.OutputTypeId, src.OutputTypeVersion, src.OutputTimestamp, src.OutputData from ModelEntityOutput src where src.ModelId = #ModelIdSource and src.OutputTypeId in (1711,1712,400,6192,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510) and not exists
(select 1 from ModelEntityOutput tgt where tgt.ModelId = #ModelIdTarget and tgt.EntityTypeId = src.EntityTypeId and tgt.EntityId = src.EntityId and tgt.OutputEntityVersionId = src.OutputEntityVersionId and tgt.OutputTypeId = src.OutputTypeId and tgt.OutputTypeVersion = src.OutputTypeVersion)
ModelIdSource:1
ModelIdTarget:2
- Elapsed time: 00:00:00.0173852
2022-12-12 18:02:19,242 [14] INFO GeneXus - ---> CommandEngine.CopyModelOutput - Elapsed time: 00:00:00.0573971
2022-12-12 18:02:19,242 [14] INFO GeneXus - ---> UdmKnowledgeBase.CopyModel - Elapsed time: 00:06:09.6155646
2022-12-12 18:02:19,300 [14] DEBUG GeneXus - Acquiring Saving lock for RTSNET\nicola.pilli
2022-12-12 18:02:19,881 [14] DEBUG GeneXus - *****TypeConverter 'UserInterfaceTypeConverter' doesn't support ConvertTo KMGuidString
2022-12-12 18:02:19,882 [14] DEBUG GeneXus - *****TypeConverter 'GeneratedLanguageConverter' doesn't support ConvertTo KMGuidString
2022-12-12 18:02:19,884 [14] DEBUG GeneXus - *****TypeConverter 'DbmsCustomTypeConverter' doesn't support ConvertTo KMGuidString
2022-12-12 18:02:20,256 [14] INFO GeneXus - ---> CopyModel.ModelCopying - Elapsed time: 00:00:00.9954385
2022-12-12 18:02:20,276 [14] INFO GeneXus - ---> CopyModel.ModelCopied - Elapsed time: 00:00:00.0188513
2022-12-12 18:02:20,276 [14] INFO GeneXus - ---> CopyModel - Elapsed time: 00:06:10.6569293
2022-12-12 18:02:20,277 [14] INFO GeneXus - == Target Environment update ended successfully ==
2022-12-12 18:02:20,289 [14] DEBUG GeneXus - Releasing CopyModel lock for RTSNET\nicola.pilli
2022-12-12 18:02:20,327 [14] INFO GeneXus - Building changed objects list
2022-12-12 18:02:20,854 [14] DEBUG GeneXus - Web Panel 'WBottoni' has no specified date for generator CSharpWeb and output 115
2022-12-12 18:02:21,965 [14] DEBUG GeneXus - [Running] C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe "C:\Program Files (x86)\GeneXus\GeneXus17-U10\Genexus.msbuild" /t:Open;SpecifierDaemon /p:GXInstall="C:\Program Files (x86)\GeneXus\GeneXus17-U10" /p:KBPath="C:\Models\TestVersione17U10b" /p:MutexName=Specifier.BuildWait.Mutex.14664.0 /p:SegmentName=Specifier.BuildWait.Segment.14664.0 /p:StateGuid="061b7d51-92dc-42c9-bf42-fa43214630cf" /p:GXProcessId=14664 /p:ModelId=2 /p:GenId=0 /p:PackagesCatalog="C:\ProgramData\GeneXus\GeneXus\17\packages.143920.xml" /p:ProductInfo="GeneXus;GeneXus;17;"
2022-12-12 18:02:22,003 [14] DEBUG GeneXus - [Running] C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe "C:\Program Files (x86)\GeneXus\GeneXus17-U10\Genexus.msbuild" /t:Open;SpecifierDaemon /p:GXInstall="C:\Program Files (x86)\GeneXus\GeneXus17-U10" /p:KBPath="C:\Models\TestVersione17U10b" /p:MutexName=Specifier.BuildWait.Mutex.14664.0 /p:SegmentName=Specifier.BuildWait.Segment.14664.0 /p:StateGuid="061b7d51-92dc-42c9-bf42-fa43214630cf" /p:GXProcessId=14664 /p:ModelId=2 /p:GenId=0 /p:PackagesCatalog="C:\ProgramData\GeneXus\GeneXus\17\packages.143920.xml" /p:ProductInfo="GeneXus;GeneXus;17;"
2022-12-12 18:02:22,072 [14] INFO GeneXus - == Specification started ==
2022-12-12 18:02:22,450 [7] DEBUG GeneXus - Microsoft (R) Build Engine versione 4.8.4084.0
2022-12-12 18:02:22,451 [7] DEBUG GeneXus - [Microsoft .NET Framework versione 4.0.30319.42000]
2022-12-12 18:02:22,451 [7] DEBUG GeneXus - Copyright (C) Microsoft Corporation. Tutti i diritti riservati.
2022-12-12 18:02:22,466 [22] DEBUG GeneXus - Microsoft (R) Build Engine versione 4.8.4084.0
2022-12-12 18:02:22,466 [22] DEBUG GeneXus - [Microsoft .NET Framework versione 4.0.30319.42000]
2022-12-12 18:02:22,466 [22] DEBUG GeneXus - Copyright (C) Microsoft Corporation. Tutti i diritti riservati.
2022-12-12 18:02:22,543 [7] DEBUG GeneXus - Compilazione avviata 12/12/2022 18:02:22.
2022-12-12 18:02:22,543 [22] DEBUG GeneXus - Compilazione avviata 12/12/2022 18:02:22.
2022-12-12 18:02:26,126 [17] DEBUG GeneXus - SpecifierDaemon:
2022-12-12 18:02:28,627 [22] DEBUG GeneXus - Progetto "C:\Program Files (x86)\GeneXus\GeneXus17-U10\Genexus.msbuild" sul nodo 1 (destinazioni: Open;SpecifierDaemon).
2022-12-12 18:02:28,627 [22] DEBUG GeneXus - Open:
2022-12-12 18:02:28,630 [7] DEBUG GeneXus - Progetto "C:\Program Files (x86)\GeneXus\GeneXus17-U10\Genexus.msbuild" sul nodo 1 (destinazioni: Open;SpecifierDaemon).
2022-12-12 18:02:28,630 [7] DEBUG GeneXus - Open:
2022-12-12 18:02:28,806 [11] INFO GeneXus - Specifying WBottoni ...
2022-12-12 18:02:31,425 [22] DEBUG GeneXus - SpecifierDaemon:
2022-12-12 18:02:31,425 [34] INFO GeneXus - Processing inferred calls...
2022-12-12 18:02:32,432 [14] INFO GeneXus - Generating Resources...
2022-12-12 18:02:35,498 [14] INFO GeneXus - Success
2022-12-12 18:02:39,283 [14] INFO GeneXus - == Specification ended successfully ==
2022-12-12 18:02:39,433 [STP SmartThreadPool Thread #0] DEBUG GeneXus - [Running] C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe "C:\Program Files (x86)\GeneXus\GeneXus17-U10\Genexus.msbuild" /t:Open;GeneratorDaemon /p:GXInstall="C:\Program Files (x86)\GeneXus\GeneXus17-U10" /p:KBPath="C:\Models\TestVersione17U10b" /p:MutexName=Generator.BuildWait.Mutex.14664.15 /p:SegmentName=Generator.BuildWait.Segment.14664.15 /p:StateGuid="061b7d51-92dc-42c9-bf42-fa43214630cf" /p:GXProcessId=14664 /p:ModelId=2 /p:GenId=15 /p:PackagesCatalog="C:\ProgramData\GeneXus\GeneXus\17\packages.143920.xml" /p:ProductInfo="GeneXus;GeneXus;17;"
2022-12-12 18:02:39,449 [STP SmartThreadPool Thread #0] INFO GeneXus - == Default (.NET Framework) Generation started ==
2022-12-12 18:02:39,816 [34] DEBUG GeneXus - Microsoft (R) Build Engine versione 4.8.4084.0
2022-12-12 18:02:39,816 [34] DEBUG GeneXus - [Microsoft .NET Framework versione 4.0.30319.42000]
2022-12-12 18:02:39,816 [34] DEBUG GeneXus - Copyright (C) Microsoft Corporation. Tutti i diritti riservati.
2022-12-12 18:02:39,981 [34] DEBUG GeneXus - Compilazione avviata 12/12/2022 18:02:39.
2022-12-12 18:02:44,129 [34] DEBUG GeneXus - Progetto "C:\Program Files (x86)\GeneXus\GeneXus17-U10\Genexus.msbuild" sul nodo 1 (destinazioni: Open;GeneratorDaemon).
2022-12-12 18:02:44,129 [17] DEBUG GeneXus - Open:
2022-12-12 18:02:50,632 [33] DEBUG GeneXus - GeneratorDaemon:
2022-12-12 18:02:50,998 [34] INFO GeneXus - Generating to NetModel\web\wbottoni.cs
2022-12-12 18:02:51,157 [34] INFO GeneXus - Generating to NetModel\web\wbottoni.js
2022-12-12 18:02:51,300 [34] INFO GeneXus - Generating to NetModel\web\gxcfg.js
2022-12-12 18:02:51,344 [35] INFO GeneXus - Generating to NetModel\web\GXCFG.WEB
2022-12-12 18:02:51,616 [35] INFO GeneXus - Generating to NetModel\web\client.exe.config
2022-12-12 18:02:52,033 [17] INFO GeneXus - Generating to NetModel\web\bldDevelopermenu.cs
2022-12-12 18:02:52,181 [17] INFO GeneXus - Generating to NetModel\web\bldwbottoni.cs
2022-12-12 18:02:52,304 [17] INFO GeneXus - Generating to NetModel\web\genexus.programs.common.rsp
2022-12-12 18:02:52,313 [17] INFO GeneXus - Generating to NetModel\web\exe.bld
2022-12-12 18:02:52,320 [17] INFO GeneXus - Generating to NetModel\web\winexe.bld
2022-12-12 18:02:52,328 [17] INFO GeneXus - Generating to NetModel\web\library.bld
2022-12-12 18:02:52,338 [17] INFO GeneXus - Generating to NetModel\web\bld15.info
2022-12-12 18:02:52,492 [STP SmartThreadPool Thread #0] INFO GeneXus - == Default (.NET Framework) Generation ended successfully ==
2022-12-12 18:02:52,772 [STP SmartThreadPool Thread #0] INFO GeneXus - Compressing static files...
2022-12-12 18:02:53,441 [STP SmartThreadPool Thread #0] INFO GeneXus - Success
2022-12-12 18:02:54,926 [14] INFO GeneXus - == WBottoni Compilation for Default (.NET Framework) started ==
2022-12-12 18:02:54,936 [14] DEBUG GeneXus - BuildCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldwbottoni.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:54,940 [14] INFO GeneXus - gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldwbottoni.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:54,940 [14] DEBUG GeneXus - ExecuteCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldwbottoni.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:57,662 [33] INFO GeneXus - Compiling wbottoni...success
2022-12-12 18:02:57,676 [14] INFO GeneXus - == WBottoni Compilation for Default (.NET Framework) ended successfully ==
2022-12-12 18:02:57,676 [14] INFO GeneXus - == Home Compilation for Default (.NET Framework) started ==
2022-12-12 18:02:57,684 [14] DEBUG GeneXus - BuildCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldhome.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:57,686 [14] INFO GeneXus - gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldhome.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:57,686 [14] DEBUG GeneXus - ExecuteCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldhome.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:58,341 [14] INFO GeneXus - == Home Compilation for Default (.NET Framework) ended successfully ==
2022-12-12 18:02:58,341 [14] INFO GeneXus - == CittaWW Compilation for Default (.NET Framework) started ==
2022-12-12 18:02:58,346 [14] DEBUG GeneXus - BuildCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldcittaww.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:58,348 [14] INFO GeneXus - gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldcittaww.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:58,348 [14] DEBUG GeneXus - ExecuteCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldcittaww.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:59,022 [14] INFO GeneXus - == CittaWW Compilation for Default (.NET Framework) ended successfully ==
2022-12-12 18:02:59,022 [14] INFO GeneXus - == ClienteWW Compilation for Default (.NET Framework) started ==
2022-12-12 18:02:59,030 [14] DEBUG GeneXus - BuildCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldclienteww.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:59,037 [14] INFO GeneXus - gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldclienteww.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:59,038 [14] DEBUG GeneXus - ExecuteCommand: gxexec "C:\Models\TestVersione17U10b\NetModel\web\bldclienteww.cs" -r:GxBaseBuilder.dll -arg:csc="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe"
2022-12-12 18:02:59,826 [14] INFO GeneXus - == ClienteWW Compilation for Default (.NET Framework) ended successfully ==
2022-12-12 18:02:59,827 [14] INFO GeneXus - == Web config update started ==
2022-12-12 18:02:59,834 [14] DEBUG GeneXus - ExecuteCommand: virtualdir.exe http://localhost/TestVersione17U10b.NETEnvironment/ "C:\Models\TestVersione17U10b\NetModel\web" -apppool "ASP.NET V4.0" -fwVer v4.0
2022-12-12 18:03:00,197 [14] DEBUG GeneXus - BuildCommand: "C:\Models\TestVersione17U10b\NetModel\web\UpdConfigWeb.exe"
2022-12-12 18:03:00,202 [14] DEBUG GeneXus - ExecuteCommand: "C:\Models\TestVersione17U10b\NetModel\web\UpdConfigWeb.exe"
2022-12-12 18:03:00,428 [15] INFO GeneXus - Updating web config ...
2022-12-12 18:03:00,514 [14] INFO GeneXus - == Web config update ended successfully ==
2022-12-12 18:03:00,571 [14] INFO GeneXus - == Execution started ==
2022-12-12 18:03:00,597 [14] DEBUG GeneXus - BuildCommand: WEB:http://localhost/TestVersione17U10b.NETEnvironment/wbottoni.aspx
2022-12-12 18:03:01,000 [14] INFO GeneXus - == Execution ended successfully ==
2022-12-12 18:03:01,064 [14] INFO GeneXus - == Run WBottoni ended successfully ==
2022-12-12 18:03:01,182 [1] INFO GeneXus - Reloading Web Panel 'WBottoni'...
2022-12-12 18:03:01,205 [1] DEBUG GeneXus - Releasing object WBottoni from editing
2022-12-12 18:03:02,699 [1] DEBUG GeneXus - Locking object WBottoni for editing
2022-12-12 18:03:04,264 [1] INFO GeneXus - Done
2022-12-12 18:03:04,312 [1] INFO GeneXus - ---> Command: BuildCommandWrapperUI - Elapsed time: 00:06:56.9186902

What value do you have at Environment Level > property: Build Mode?
I had the same problem and it solved when switching the value of this property from MSBuild to Standard.
You can read more about this property on the following link: https://wiki.genexus.com/commwiki/servlet/wiki?3936,Build+Mode+property+for+.NET+generator

The Target Environment update step is a very IO intensive step, that needs to compare the state of the internal model structure of the version being built, with the last built state of the current environment.
This synchronization is performed directly in the KB's DB with a series of SQL statements.
If you turn the GeneXus log on, and run GeneXus with the /MeasureCommandTime command line argument, the statements run during the synchronization are print in the log, with detailed information on how long it took to run each statement. If you post that information here I may be able to provide some further insight into why the synchronization may be taking too long.
In any case, I would advise you to check how the SQL server instance of the KB's DB is performing, for instance check if it's constrained in memory usage, or check if the DB files are stored in a drive with slow read/write speeds.

Related

How can I turn off netty client DNS connect retry?

I'm using Netty-httpClient for Spring webClient.
When I connect www.naver.com and set the host like this.
127.0.0.1 www.naver.com
125.209.222.142 www.naver.com
And run httpClient.get() result like this.
DEBUG r.n.r.PooledConnectionProvider - [id:83c8069f] Created a new pooled channel, now: 0 active connections, 0 inactive connections and 0 pending acquire requests.
DEBUG r.n.t.SslProvider - [id:83c8069f] SSL enabled using engine sun.security.ssl.SSLEngineImpl#5412b204 and SNI www.naver.com:443
DEBUG i.n.b.AbstractByteBuf - -Dio.netty.buffer.checkAccessible: true
DEBUG i.n.b.AbstractByteBuf - -Dio.netty.buffer.checkBounds: true
DEBUG i.n.u.ResourceLeakDetectorFactory - Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector#7ec1e7a5
DEBUG r.n.t.TransportConfig - [id:83c8069f] Initialized pipeline DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.loggingHandler = reactor.netty.transport.logging.ReactorNettyLoggingHandler), (reactor.left.sslReader = reactor.netty.tcp.SslProvider$SslReadHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
INFO reactor - [id:83c8069f] REGISTERED
DEBUG r.n.t.TransportConnector - [id:83c8069f] Connecting to [www.naver.com/127.0.0.1:443].
INFO reactor - [id:83c8069f] CONNECT: www.naver.com/127.0.0.1:443
INFO reactor - [id:83c8069f] CLOSE
DEBUG r.n.t.TransportConnector - [id:83c8069f] Connect attempt to [www.naver.com/127.0.0.1:443] failed.
io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: www.naver.com/127.0.0.1:443
Caused by: java.net.ConnectException: Connection refused: no further information
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:716)
at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:330)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:707)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:655)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:581)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
DEBUG r.n.r.PooledConnectionProvider - [id:0e3c272c] Created a new pooled channel, now: 0 active connections, 0 inactive connections and 0 pending acquire requests.
DEBUG r.n.t.SslProvider - [id:0e3c272c] SSL enabled using engine sun.security.ssl.SSLEngineImpl#47b241b and SNI www.naver.com:443
DEBUG r.n.t.TransportConfig - [id:0e3c272c] Initialized pipeline DefaultChannelPipeline{(reactor.left.sslHandler = io.netty.handler.ssl.SslHandler), (reactor.left.loggingHandler = reactor.netty.transport.logging.ReactorNettyLoggingHandler), (reactor.left.sslReader = reactor.netty.tcp.SslProvider$SslReadHandler), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)}
INFO reactor - [id:0e3c272c] REGISTERED
INFO reactor - [id:83c8069f] UNREGISTERED
DEBUG r.n.t.TransportConnector - [id:0e3c272c] Connecting to [www.naver.com/125.209.222.142:443].
INFO reactor - [id:0e3c272c] CONNECT: www.naver.com/125.209.222.142:443
DEBUG r.n.r.DefaultPooledConnectionProvider - [id:0e3c272c, L:/192.168.55.77:52910 - R:www.naver.com/125.209.222.142:443] Registering pool release on close event for channel
DEBUG r.n.r.PooledConnectionProvider - [id:0e3c272c, L:/192.168.55.77:52910 - R:www.naver.com/125.209.222.142:443] Channel connected, now: 1 active connections, 0 inactive connections and 0 pending acquire requests.
DEBUG i.n.u.Recycler - -Dio.netty.recycler.maxCapacityPerThread: 4096
DEBUG i.n.u.Recycler - -Dio.netty.recycler.maxSharedCapacityFactor: 2
DEBUG i.n.u.Recycler - -Dio.netty.recycler.linkCapacity: 16
DEBUG i.n.u.Recycler - -Dio.netty.recycler.ratio: 8
DEBUG i.n.u.Recycler - -Dio.netty.recycler.delayedQueue.ratio: 8
INFO reactor - [id:0e3c272c, L:/192.168.55.77:52910 - R:www.naver.com/125.209.222.142:443] ACTIVE
see that. I don't want connect twice and don't spend more time to connect.
just fail if can not make connect.
Can I avoid this situation?
This is managing under the issue.
https://github.com/reactor/reactor-netty/issues/1822

Failed to use Julia (0.6) and Atom (1.18.0 x64)

I uninstalled Julia 0.5 and 0.52 including folders and the Atom editor.
Then I reinstalled Julia 0.6 and in a next step, Atom 1.18.0 x64.
Within Atom, the following packages were installed afterwards:
uber-juno 0.1.2
julia-client 0.6.0
ink 0.7.4
language-julia 0.11.0
From within the Atom editor console I've got after typing Pkg.update() no response,
Then from within julia window: Pkg.update() I've got the following message:
julia> Pkg.update()
INFO: Initializing package repository C:\Users\Carsten\.julia\v0.6
INFO: Cloning METADATA from https://github.com/JuliaLang/METADATA.jl
ERROR: GitError(Code:ERROR, Class:OS, failed to send request: Die Serververbindung konnte nicht hergestellt werden.
)
Stacktrace:
[1] macro expansion at .\libgit2\error.jl:99 [inlined]
[2] clone(::String, ::String, ::Base.LibGit2.CloneOptions) at .\libgit2\repository.jl:276
[3] #clone#100(::String, ::Bool, ::Ptr{Void}, ::Nullable{Base.LibGit2.AbstractCredentials}, ::Function, ::String, ::String) at .\libgit2\libgit2.jl:562
[4] (::Base.LibGit2.#kw##clone)(::Array{Any,1}, ::Base.LibGit2.#clone, ::String, ::String) at .\<missing>:0
[5] (::Base.Pkg.Dir.##8#10{String,String})() at .\pkg\dir.jl:55
[6] cd(::Base.Pkg.Dir.##8#10{String,String}, ::String) at .\file.jl:59
[7] init(::String, ::String) at .\pkg\dir.jl:53
[8] #cd#1(::Array{Any,1}, ::Function, ::Function, ::String, ::Vararg{Any,N} where N) at .\pkg\dir.jl:28
[9] update() at .\pkg\pkg.jl:228

Strange logs when vaadin page opened in osgi

I have following logs when opening a vaadin page.
The strange logs stop when I close my webpage.
[qtp948395645-39] DEBUG org.eclipse.jetty.http.HttpParser - filled 447/447
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.server.Server - REQUEST / on AsyncHttpConnection#5444c658,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-5,l=48,c=0},r=11
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.server.session - Got Session ID 1mddljaq8cpy11l0btqfs6p34s from cookie
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.server.session - sessionManager=org.eclipse.jetty.server.session.HashSessionManager#19868320
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.HashedSession:1mddljaq8cpy11l0btqfs6p34s#1806836909
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet ||/ -> org.apache.felix.http.base.internal.DispatcherServlet-158d255c
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=null
[qtp948395645-39 - /] DEBUG org.eclipse.jetty.server.Server - RESPONSE / 200 handled=true
[qtp948395645-39] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Enabled read interest SCEP#11dfd090{l(/10.221.137.111:56461)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#5444c658,g=HttpGenerator{s=4,h=0,b=0,c=-1},p=HttpParser{s=0,l=48,c=0},r=11}
[qtp948395645-39] DEBUG org.eclipse.jetty.http.HttpParser - filled 0/0
[qtp948395645-36] DEBUG org.eclipse.jetty.http.HttpParser - filled 474/474
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.server.Server - REQUEST /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js on AsyncHttpConnection#5444c658,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-5,l=48,c=0},r=12
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.server.session - Got Session ID 1mddljaq8cpy11l0btqfs6p34s from cookie
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.server.session - sessionManager=org.eclipse.jetty.server.session.HashSessionManager#19868320
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.HashedSession:1mddljaq8cpy11l0btqfs6p34s#1806836909
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet ||/VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js -> org.apache.felix.http.base.internal.DispatcherServlet-158d255c
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=null
[qtp948395645-36 - /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js?1443457921853] DEBUG org.eclipse.jetty.server.Server - RESPONSE /VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js 200 handled=true
[qtp948395645-36] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Enabled read interest SCEP#11dfd090{l(/10.221.137.111:56461)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#5444c658,g=HttpGenerator{s=4,h=0,b=0,c=-1},p=HttpParser{s=0,l=48,c=0},r=12}
[qtp948395645-40] DEBUG org.eclipse.jetty.http.HttpParser - filled 731/731
[qtp948395645-36] DEBUG org.eclipse.jetty.http.HttpParser - filled 0/0
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.server.Server - REQUEST / on AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=2,l=48,c=246},r=3
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.server.session - Got Session ID 1mddljaq8cpy11l0btqfs6p34s from cookie
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.server.session - sessionManager=org.eclipse.jetty.server.session.HashSessionManager#19868320
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.HashedSession:1mddljaq8cpy11l0btqfs6p34s#1806836909
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet ||/ -> org.apache.felix.http.base.internal.DispatcherServlet-158d255c
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=null
[qtp948395645-40 - /?v-1443457921854] INFO com.bekaert.handling.ui.core - Rebuilding session from cookie for user 'admin'
[qtp948395645-40 - /?v-1443457921854] WARN com.bekaert.handling.ui.core.main.ErrorView - Entered in error view:
[qtp948395645-40 - /?v-1443457921854] DEBUG org.eclipse.jetty.server.Server - RESPONSE / 200 handled=true
[qtp948395645-40] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Enabled read interest SCEP#61bf045{l(/10.221.137.111:56462)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=4,h=0,b=0,c=-1},p=HttpParser{s=0,l=48,c=246},r=3}
[qtp948395645-40] DEBUG org.eclipse.jetty.http.HttpParser - filled 0/0
[qtp948395645-42] DEBUG org.eclipse.jetty.http.HttpParser - filled 695/695
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.server.Server - REQUEST /UIDL/ on AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=2,l=48,c=200},r=4
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/UIDL/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/UIDL/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.server.session - Got Session ID 1mddljaq8cpy11l0btqfs6p34s from cookie
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.server.session - sessionManager=org.eclipse.jetty.server.session.HashSessionManager#19868320
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.HashedSession:1mddljaq8cpy11l0btqfs6p34s#1806836909
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet ||/UIDL/ -> org.apache.felix.http.base.internal.DispatcherServlet-158d255c
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=null
[qtp948395645-42 - /UIDL/?v-wsver=7.5.5&v-uiId=1] DEBUG org.eclipse.jetty.server.Server - RESPONSE /UIDL/ 200 handled=true
[qtp948395645-42] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Enabled read interest SCEP#61bf045{l(/10.221.137.111:56462)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=4,h=0,b=0,c=-1},p=HttpParser{s=0,l=48,c=200},r=4}
[qtp948395645-42] DEBUG org.eclipse.jetty.http.HttpParser - filled 0/0
[qtp948395645-37] DEBUG org.eclipse.jetty.http.HttpParser - filled 607/607
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.Server - REQUEST /UIDL/ on AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=2,l=48,c=126},r=5
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/UIDL/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/UIDL/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.session - Got Session ID 1mddljaq8cpy11l0btqfs6p34s from cookie
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.session - sessionManager=org.eclipse.jetty.server.session.HashSessionManager#19868320
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.HashedSession:1mddljaq8cpy11l0btqfs6p34s#1806836909
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet ||/UIDL/ -> org.apache.felix.http.base.internal.DispatcherServlet-158d255c
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=null
[qtp948395645-37 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.Server - RESPONSE /UIDL/ 200 handled=true
[qtp948395645-37] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Enabled read interest SCEP#61bf045{l(/10.221.137.111:56462)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=4,h=0,b=0,c=-1},p=HttpParser{s=0,l=48,c=126},r=5}
[qtp948395645-37] DEBUG org.eclipse.jetty.http.HttpParser - filled 0/0
[DefaultQuartzScheduler_Worker-10] DEBUG com.bekaert.handling.order.location.sap.connector.impl - Start search for new SAP orders
[qtp948395645-39] DEBUG org.eclipse.jetty.http.HttpParser - filled 607/607
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.Server - REQUEST /UIDL/ on AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=2,l=48,c=126},r=6
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/UIDL/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/UIDL/ # o.e.j.s.ServletContextHandler{/,null}
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.session - Got Session ID 1mddljaq8cpy11l0btqfs6p34s from cookie
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.session - sessionManager=org.eclipse.jetty.server.session.HashSessionManager#19868320
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.HashedSession:1mddljaq8cpy11l0btqfs6p34s#1806836909
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet ||/UIDL/ -> org.apache.felix.http.base.internal.DispatcherServlet-158d255c
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=null
[qtp948395645-39 - /UIDL/?v-uiId=1] DEBUG org.eclipse.jetty.server.Server - RESPONSE /UIDL/ 200 handled=true
[qtp948395645-39] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Enabled read interest SCEP#61bf045{l(/10.221.137.111:56462)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=4,h=0,b=0,c=-1},p=HttpParser{s=0,l=48,c=126},r=6}
[qtp948395645-39] DEBUG org.eclipse.jetty.http.HttpParser - filled 0/0
[qtp948395645-36] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - ishut SCEP#61bf045{l(/10.221.137.111:56462)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-14,l=0,c=-3},r=6}
[qtp948395645-36] DEBUG org.eclipse.jetty.http.HttpParser - filled -1/0
[qtp948395645-36] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Disabled read interest while writing response SCEP#61bf045{l(/10.221.137.111:56462)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=-3},r=6}
[qtp948395645-36] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - close SCEP#61bf045{l(/10.221.137.111:56462)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=-3},r=6}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.io.nio - destroyEndPoint SCEP#61bf045{l(null)<->r(0.0.0.0/0.0.0.0:80),s=0,open=false,ishut=true,oshut=true,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=-3},r=6}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.server.AbstractHttpConnection - closed AsyncHttpConnection#34d39e39,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=-3},r=6
[qtp948395645-37] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - ishut SCEP#5534412c{l(/10.221.137.111:56463)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#cf40a17,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-14,l=0,c=0},r=0}
[qtp948395645-37] DEBUG org.eclipse.jetty.http.HttpParser - filled -1/0
[qtp948395645-37] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Disabled read interest while writing response SCEP#5534412c{l(/10.221.137.111:56463)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#cf40a17,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-37] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - close SCEP#5534412c{l(/10.221.137.111:56463)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#cf40a17,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-42] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - ishut SCEP#1dcb12a9{l(/10.221.137.111:56464)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#6a011d1d,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-14,l=0,c=0},r=0}
[qtp948395645-42] DEBUG org.eclipse.jetty.http.HttpParser - filled -1/0
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.io.nio - destroyEndPoint SCEP#5534412c{l(null)<->r(0.0.0.0/0.0.0.0:80),s=0,open=false,ishut=true,oshut=true,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#cf40a17,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-42] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Disabled read interest while writing response SCEP#1dcb12a9{l(/10.221.137.111:56464)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#6a011d1d,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.server.AbstractHttpConnection - closed AsyncHttpConnection#cf40a17,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0
[qtp948395645-42] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - close SCEP#1dcb12a9{l(/10.221.137.111:56464)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#6a011d1d,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-42] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - ishut SCEP#6d491226{l(/10.221.137.111:56466)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#2c01d086,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-14,l=0,c=0},r=0}
[qtp948395645-42] DEBUG org.eclipse.jetty.http.HttpParser - filled -1/0
[qtp948395645-42] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Disabled read interest while writing response SCEP#6d491226{l(/10.221.137.111:56466)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#2c01d086,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-42] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - close SCEP#6d491226{l(/10.221.137.111:56466)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#2c01d086,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.io.nio - destroyEndPoint SCEP#1dcb12a9{l(null)<->r(0.0.0.0/0.0.0.0:80),s=0,open=false,ishut=true,oshut=true,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#6a011d1d,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.server.AbstractHttpConnection - closed AsyncHttpConnection#6a011d1d,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.io.nio - destroyEndPoint SCEP#6d491226{l(null)<->r(0.0.0.0/0.0.0.0:80),s=0,open=false,ishut=true,oshut=true,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#2c01d086,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.server.AbstractHttpConnection - closed AsyncHttpConnection#2c01d086,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0
[qtp948395645-37] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - ishut SCEP#387f2edf{l(/10.221.137.111:56465)<->r(/10.224.129.14:80),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#574b3210,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-14,l=0,c=0},r=0}
[qtp948395645-37] DEBUG org.eclipse.jetty.http.HttpParser - filled -1/0
[qtp948395645-37] DEBUG org.eclipse.jetty.server.AsyncHttpConnection - Disabled read interest while writing response SCEP#387f2edf{l(/10.221.137.111:56465)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1r}-{AsyncHttpConnection#574b3210,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-37] DEBUG org.eclipse.jetty.io.nio.ChannelEndPoint - close SCEP#387f2edf{l(/10.221.137.111:56465)<->r(/10.224.129.14:80),s=1,open=true,ishut=true,oshut=false,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#574b3210,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.io.nio - destroyEndPoint SCEP#387f2edf{l(null)<->r(0.0.0.0/0.0.0.0:80),s=0,open=false,ishut=true,oshut=true,rb=false,wb=false,w=true,i=1!}-{AsyncHttpConnection#574b3210,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0}
[qtp948395645-35 Selector0] DEBUG org.eclipse.jetty.server.AbstractHttpConnection - closed AsyncHttpConnection#574b3210,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=0,l=0,c=0},r=0
[Timer-2] INFO org.jinterop.dcom.core.JIComOxidRuntime - Running ClientPingTimerTask !
[Timer-2] INFO org.jinterop.dcom.core.JIComOxidRuntime - Within ClientPingTimerTask: holder.currentSetOIDs, current size of which is 2
[Timer-2] INFO org.jinterop.dcom.core.PingObject - Simple Ping going for setId: 00000: 00 00 00 05 65 74 29 12 |....et). |
[Timer-2] INFO org.jinterop -
Sending REQUEST
[Timer-2] INFO org.jinterop -
Recieved RESPONSE
[Timer-2] INFO org.jinterop.dcom.core.PingObject - Simple Ping Succeeded
[Timer-2] INFO org.jinterop.dcom.core.JIComOxidRuntime - Within ClientPingTimerTask: holder.seqNum 1
I don't know what all this means.
Also, it doesn't happen always. If I restart my osgi program, there is a 1/2 change I have this problem.

Cannot execute a custom xpath rule on XML

I am trying to create custom XML rules but they are not working. :(
First my configuration :
sonarqube 4.3
xml plugin 1.2
I want to create a custom rule in xpath for an XML Quality Profile.
The rule is never applied and no violation is detected.
My rule :
//ELEMENT/S_TAG/NAME[#tokenValue='root']
My XML file :
<?xml version="1.0" encoding="UTF-8" ?>
<root>
</root>
The AST tree :
<DOCUMENT tokenValue="<?xml" tokenLine="1" tokenColumn="0">
<PROLOG tokenValue="<?xml" tokenLine="1" tokenColumn="0">
<XML_DECL tokenValue="<?xml" tokenLine="1" tokenColumn="0">
<TOKEN tokenValue="<?xml" tokenLine="1" tokenColumn="0"/>
<VERSION_INFO tokenValue="version" tokenLine="1" tokenColumn="6">
<TOKEN tokenValue="version" tokenLine="1" tokenColumn="6"/>
<EQ tokenValue="=" tokenLine="1" tokenColumn="13">
<TOKEN tokenValue="=" tokenLine="1" tokenColumn="13"/>
</EQ>
<TOKEN tokenValue=""" tokenLine="1" tokenColumn="14"/>
<VERSION_NUM tokenValue="1." tokenLine="1" tokenColumn="15">
<TOKEN tokenValue="1." tokenLine="1" tokenColumn="15"/>
<TOKEN tokenValue="0" tokenLine="1" tokenColumn="17"/>
</VERSION_NUM>
<TOKEN tokenValue=""" tokenLine="1" tokenColumn="18"/>
</VERSION_INFO>
<ENCODING_DECL tokenValue="encoding" tokenLine="1" tokenColumn="20">
<TOKEN tokenValue="encoding" tokenLine="1" tokenColumn="20"/>
<EQ tokenValue="=" tokenLine="1" tokenColumn="28">
<TOKEN tokenValue="=" tokenLine="1" tokenColumn="28"/>
</EQ>
<TOKEN tokenValue=""" tokenLine="1" tokenColumn="29"/>
<ENC_NAME tokenValue="UTF-8" tokenLine="1" tokenColumn="30">
<TOKEN tokenValue="UTF-8" tokenLine="1" tokenColumn="30"/>
</ENC_NAME>
<TOKEN tokenValue=""" tokenLine="1" tokenColumn="35"/>
</ENCODING_DECL>
<TOKEN tokenValue="?>" tokenLine="1" tokenColumn="38"/>
</XML_DECL>
<MISC/>
</PROLOG>
<ELEMENT tokenValue="<" tokenLine="3" tokenColumn="0">
<S_TAG tokenValue="<" tokenLine="3" tokenColumn="0">
<TOKEN tokenValue="<" tokenLine="3" tokenColumn="0"/>
<NAME tokenValue="root" tokenLine="3" tokenColumn="1">
<TOKEN tokenValue="root" tokenLine="3" tokenColumn="1"/>
</NAME>
<TOKEN tokenValue=">" tokenLine="3" tokenColumn="5"/>
</S_TAG>
<CONTENT tokenValue="
" tokenLine="3" tokenColumn="6">
<CHAR_DATA tokenValue="
" tokenLine="3" tokenColumn="6">
<TOKEN tokenValue="
" tokenLine="3" tokenColumn="6"/>
</CHAR_DATA>
</CONTENT>
<E_TAG tokenValue="</" tokenLine="5" tokenColumn="0">
<TOKEN tokenValue="</" tokenLine="5" tokenColumn="0"/>
<NAME tokenValue="root" tokenLine="5" tokenColumn="2">
<TOKEN tokenValue="root" tokenLine="5" tokenColumn="2"/>
</NAME>
<TOKEN tokenValue=">" tokenLine="5" tokenColumn="6"/>
</E_TAG>
</ELEMENT>
<MISC/>
</DOCUMENT>
And the log of the analysis :
Retrieve remote issues of project prjtest...
Start SonarQube analysis on prjtest...
INFO: SonarQube Server 4.3
09:26:29.309 INFO - Preview mode
09:26:29.315 INFO - Load batch settings
09:26:29.329 DEBUG - Download: http://xxxx/sonar/batch_bootstrap/properties?dryRun=true (no proxy)
09:26:29.554 INFO - User cache: C:\Users\xxxxx-s\.sonar\cache
09:26:29.567 INFO - Install plugins
09:26:29.567 DEBUG - Download index of plugins
09:26:29.567 DEBUG - Download: http://xxxxxx/sonar/deploy/plugins/index.txt (no proxy)
09:26:29.598 INFO - Include plugins:
09:26:29.599 INFO - Exclude plugins: devcockpit, buildstability, pdfreport, report, buildbreaker, scmactivity, views, jira
09:26:29.847 DEBUG - Download: http://xxxx/sonar/batch_bootstrap/db?project=fr.sihm.eand:prjtest (no proxy)
09:26:30.111 DEBUG - Dry Run database size: 1 MB
09:26:30.119 INFO - Create JDBC datasource for jdbc:h2:D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core\.sonartmp\preview1414743989840-0
09:26:30.845 DEBUG - Testing JDBC connection
09:26:32.049 INFO - Initializing Hibernate
09:26:32.053 DEBUG - hibernate.generate_statistics: false
09:26:32.053 DEBUG - hibernate.dialect: org.hibernate.dialect.H2Dialect
09:26:32.053 DEBUG - hibernate.connection.provider_class: org.sonar.jpa.session.CustomHibernateConnectionProvider
09:26:33.503 DEBUG - Loaded 3276 properties from l10n bundles
09:26:35.161 INFO - Load project settings
09:26:35.161 DEBUG - Download: http://xxxxxx/sonar/batch_bootstrap/properties?project=fr.sihm.eand:prjtest&dryRun=true (no proxy)
09:26:35.216 INFO - Apply project exclusions
09:26:35.452 DEBUG - ooo Using Connection [jdbc:h2:D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core\.sonartmp\preview1414743989840-0, UserName=SONAR, H2 JDBC Driver]
09:26:35.457 DEBUG - ==> Preparing: select * from projects p where p.id=?
09:26:35.482 DEBUG - ==> Parameters: 14701(Long)
09:26:35.734 INFO - ------------- Scan prjtest
09:26:35.763 INFO - Load module settings
09:26:35.797 DEBUG - Download: http://xxxx/sonar/batch_bootstrap/properties?project=fr.sihm.eand:prjtest&dryRun=true (no proxy)
09:26:36.162 DEBUG - Available languages:
09:26:36.163 DEBUG - * Java => "java"
09:26:36.163 DEBUG - * Web => "web"
09:26:36.163 DEBUG - * XML => "xml"
09:26:36.163 DEBUG - * JavaScript => "js"
09:26:37.142 INFO - Loading technical debt model...
09:26:37.181 INFO - Loading technical debt model done: 39 ms
09:26:37.204 INFO - Loading rules...
09:26:37.711 INFO - Loading rules done: 507 ms
09:26:37.780 INFO - Configure Maven plugins
09:26:37.970 INFO - Compare to previous analysis (2014-10-30)
09:26:37.991 INFO - Compare over 30 days (2014-10-01, analysis of 2014-10-23 15:42:10.95)
09:26:37.993 INFO - No quality gate is configured.
09:26:38.340 DEBUG - Initializers :
09:26:38.340 INFO - Base dir: D:\001-Projets\Sonar\prjtest
09:26:38.340 INFO - Working dir: D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core
09:26:38.340 INFO - Source dirs: D:\001-Projets\Sonar\prjtest\src
09:26:38.340 INFO - Binary dirs: D:\001-Projets\Sonar\prjtest\bin
09:26:38.340 INFO - Source encoding: windows-1252, default locale: fr_FR
09:26:38.341 INFO - Index files
09:26:38.346 DEBUG - Declared extensions of language Java were converted to sonar.lang.patterns.java : **/*.java,**/*.jav
09:26:38.346 DEBUG - Declared extensions of language Web were converted to sonar.lang.patterns.web : **/*.html,**/*.xhtml,**/*.jsp,**/*.jspf,**/*.jsf,**/*.php,**/*.erb,**/*.rhtml
09:26:38.346 DEBUG - Declared extensions of language XML were converted to sonar.lang.patterns.xml : **/*.xml
09:26:38.347 DEBUG - Declared extensions of language JavaScript were converted to sonar.lang.patterns.js : **/*.js
09:26:38.438 DEBUG - Language of file 'src/Jx_bad.xml' is detected to be 'xml'
09:26:38.542 DEBUG - Language of file 'src/Jx_G_J_Ds2MoJoDs_good.xml' is detected to be 'xml'
09:26:38.544 DEBUG - Language of file 'src/NewFile.xml' is detected to be 'xml'
09:26:38.545 INFO - 3 files indexed
09:26:38.669 INFO - Quality profile for xml: SIHM - DTS - Général
09:26:38.726 DEBUG - Sensors : QProfileSensor -> CpdSensor -> XmlSensor -> LineCountSensor -> JaCoCoSensor -> JaCoCoItSensor -> JaCoCoOverallSensor -> InitialOpenIssuesSensor -> ProfileEventsSensor -> ProjectLinksSensor
09:26:38.727 INFO - Sensor QProfileSensor...
09:26:38.739 INFO - Sensor QProfileSensor done: 12 ms
09:26:38.740 INFO - Sensor CpdSensor...
09:26:38.740 DEBUG - Detection of duplicated code is not supported for xml
09:26:38.740 INFO - Sensor CpdSensor done: 0 ms
09:26:38.740 INFO - Sensor XmlSensor...
09:26:39.126 INFO - Sensor XmlSensor done: 386 ms
09:26:39.127 INFO - Sensor LineCountSensor...
09:26:39.137 DEBUG - Count comment in D:\001-Projets\Sonar\prjtest\src\Jx_G_J_Ds2MoJoDs_good.xml
09:26:39.167 DEBUG - LineCountSensor: src/Jx_G_J_Ds2MoJoDs_good.xml:920,17,0
09:26:39.168 DEBUG - Count comment in D:\001-Projets\Sonar\prjtest\src\Jx_bad.xml
09:26:39.172 DEBUG - LineCountSensor: src/Jx_bad.xml:10,0,0
09:26:39.174 DEBUG - Count comment in D:\001-Projets\Sonar\prjtest\src\NewFile.xml
09:26:39.177 DEBUG - LineCountSensor: src/NewFile.xml:5,2,0
09:26:39.177 INFO - Sensor LineCountSensor done: 51 ms
09:26:39.177 INFO - Sensor JaCoCoSensor...
09:26:39.188 INFO - Project coverage is set to 0% as no JaCoCo execution data has been dumped: D:\001-Projets\Sonar\prjtest\target\jacoco.exec
09:26:39.205 WARN - Coverage information was not collected. Perhaps you forget to include debug information into compiled classes?
09:26:39.205 INFO - Sensor JaCoCoSensor done: 28 ms
09:26:39.206 INFO - Sensor JaCoCoItSensor...
09:26:39.208 INFO - Project coverage is set to 0% as no JaCoCo execution data has been dumped: D:\001-Projets\Sonar\prjtest\target\jacoco-it.exec
09:26:39.209 WARN - Coverage information was not collected. Perhaps you forget to include debug information into compiled classes?
09:26:39.209 INFO - Sensor JaCoCoItSensor done: 3 ms
09:26:39.209 INFO - Sensor JaCoCoOverallSensor...
09:26:39.209 INFO - Sensor JaCoCoOverallSensor done: 0 ms
09:26:39.209 INFO - Sensor InitialOpenIssuesSensor...
09:26:39.232 INFO - Sensor InitialOpenIssuesSensor done: 23 ms
09:26:39.233 INFO - Sensor ProfileEventsSensor...
09:26:39.266 INFO - Sensor ProfileEventsSensor done: 33 ms
09:26:39.266 INFO - Sensor ProjectLinksSensor...
09:26:39.285 INFO - Sensor ProjectLinksSensor done: 19 ms
09:26:39.436 INFO - Execute decorators...
09:26:39.437 DEBUG - Decorators: ManualMeasureDecorator -> org.sonar.issuesreport.tree.ResourceTree#480994d3 -> SumDuplicationsDecorator -> org.sonar.plugins.design.batch.ProjectDsmDecorator#7146c6ea -> FileTangleIndexDecorator -> org.sonar.plugins.core.issue.IssueTrackingDecorator#a5d23c9 -> UnitTestDecorator -> org.sonar.plugins.core.sensors.DirectoriesDecorator#6065bcb7 -> org.sonar.plugins.core.sensors.FilesDecorator#1ee6434 -> org.sonar.plugins.core.timemachine.TimeMachineConfigurationPersister#59ec5a0b -> org.sonar.plugins.core.timemachine.NewCoverageAggregator#71d78cac -> org.sonar.plugins.uselesscodetracker.decorator.TempMethodLinesDecorator#550f522b -> org.sonar.plugins.uselesscodetracker.decorator.DuplicationsDecorator#6a7fc4c1 -> f(lines) -> f(generated_lines) -> f(ncloc) -> f(generated_ncloc) -> f(classes) -> f(packages) -> f(functions) -> f(accessors) -> f(statements) -> f(public_api) -> f(comment_lines) -> f(comment_blank_lines) -> f(public_undocumented_api) -> f(commented_out_code_lines) -> f(complexity) -> f(complexity_in_classes) -> f(complexity_in_functions) -> f(class_complexity_distribution) -> f(function_complexity_distribution) -> f(file_complexity_distribution) -> f(lines_to_cover) -> f(uncovered_lines) -> f(conditions_to_cover) -> f(uncovered_conditions) -> f(it_lines_to_cover) -> f(it_uncovered_lines) -> f(it_conditions_to_cover) -> f(it_uncovered_conditions) -> f(overall_lines_to_cover) -> f(overall_uncovered_lines) -> f(overall_conditions_to_cover) -> f(overall_uncovered_conditions) -> f(rfc) -> f(rfc_distribution) -> f(lcom4_distribution) -> f(package_cycles) -> f(package_tangles) -> f(package_feedback_edges) -> f(package_edges_weight) -> f(new_lines_to_cover) -> f(new_uncovered_lines) -> f(new_conditions_to_cover) -> f(new_uncovered_conditions) -> f(new_it_lines_to_cover) -> f(new_it_uncovered_lines) -> f(new_it_conditions_to_cover) -> f(new_it_uncovered_conditions) -> f(new_overall_lines_to_cover) -> f(new_overall_uncovered_lines) -> f(new_overall_conditions_to_cover) -> f(new_overall_uncovered_conditions) -> org.sonar.plugins.cpd.decorators.DuplicationDensityDecorator#2c7c898a -> PackageTangleIndexDecorator -> CountUnresolvedIssuesDecorator -> CountFalsePositivesDecorator -> org.sonar.plugins.core.technicaldebt.DebtDecorator#23dc70c1 -> org.sonar.plugins.core.technicaldebt.NewDebtDecorator#53b907d9 -> CommentDensityDecorator -> org.sonar.plugins.uselesscodetracker.decorator.TotalDecorator#1842dc39 -> f(file_complexity) -> f(class_complexity) -> f(function_complexity) -> org.sonar.plugins.core.sensors.CoverageDecorator#6167c42f -> org.sonar.plugins.core.sensors.LineCoverageDecorator#2cbc2db2 -> org.sonar.plugins.core.sensors.BranchCoverageDecorator#2de96eba -> org.sonar.plugins.core.sensors.ItLineCoverageDecorator#6296e4bf -> org.sonar.plugins.core.sensors.ItCoverageDecorator#220cda54 -> org.sonar.plugins.core.sensors.ItBranchCoverageDecorator#39109603 -> org.sonar.plugins.core.sensors.OverallLineCoverageDecorator#4d3990a5 -> org.sonar.plugins.core.sensors.OverallCoverageDecorator#18df26a1 -> org.sonar.plugins.core.sensors.OverallBranchCoverageDecorator#5c459194 -> org.sonar.plugins.core.issue.WeightedIssuesDecorator#fe38c0e -> ViolationDensityDecorator -> IssuesDensityDecorator -> VariationDecorator
09:26:39.617 DEBUG - Decorator time:
ManualMeasureDecorator: 12ms
org.sonar.issuesreport.tree.ResourceTree#480994d3: 1ms
SumDuplicationsDecorator: 7ms
org.sonar.plugins.design.batch.ProjectDsmDecorator#7146c6ea: 0ms
FileTangleIndexDecorator: 0ms
org.sonar.plugins.core.issue.IssueTrackingDecorator#a5d23c9: 75ms
UnitTestDecorator: 1ms
org.sonar.plugins.core.sensors.DirectoriesDecorator#6065bcb7: 1ms
org.sonar.plugins.core.sensors.FilesDecorator#1ee6434: 0ms
org.sonar.plugins.core.timemachine.TimeMachineConfigurationPersister#59ec5a0b: 5ms
org.sonar.plugins.core.timemachine.NewCoverageAggregator#71d78cac: 3ms
org.sonar.plugins.uselesscodetracker.decorator.TempMethodLinesDecorator#550f522b: 10ms
org.sonar.plugins.uselesscodetracker.decorator.DuplicationsDecorator#6a7fc4c1: 0ms
f(lines): 0ms
f(generated_lines): 0ms
f(ncloc): 0ms
f(generated_ncloc): 0ms
f(classes): 0ms
f(packages): 0ms
f(functions): 0ms
f(accessors): 0ms
f(statements): 0ms
f(public_api): 0ms
f(comment_lines): 0ms
f(comment_blank_lines): 0ms
f(public_undocumented_api): 0ms
f(commented_out_code_lines): 0ms
f(complexity): 0ms
f(complexity_in_classes): 1ms
f(complexity_in_functions): 0ms
f(class_complexity_distribution): 0ms
f(function_complexity_distribution): 0ms
f(file_complexity_distribution): 0ms
f(lines_to_cover): 0ms
f(uncovered_lines): 0ms
f(conditions_to_cover): 0ms
f(uncovered_conditions): 0ms
f(it_lines_to_cover): 1ms
f(it_uncovered_lines): 0ms
f(it_conditions_to_cover): 1ms
f(it_uncovered_conditions): 0ms
f(overall_lines_to_cover): 0ms
f(overall_uncovered_lines): 0ms
f(overall_conditions_to_cover): 1ms
f(overall_uncovered_conditions): 0ms
f(rfc): 0ms
f(rfc_distribution): 0ms
f(lcom4_distribution): 0ms
f(package_cycles): 0ms
f(package_tangles): 0ms
f(package_feedback_edges): 0ms
f(package_edges_weight): 0ms
f(new_lines_to_cover): 0ms
f(new_uncovered_lines): 0ms
f(new_conditions_to_cover): 0ms
f(new_uncovered_conditions): 0ms
f(new_it_lines_to_cover): 0ms
f(new_it_uncovered_lines): 0ms
f(new_it_conditions_to_cover): 0ms
f(new_it_uncovered_conditions): 0ms
f(new_overall_lines_to_cover): 0ms
f(new_overall_uncovered_lines): 0ms
f(new_overall_conditions_to_cover): 0ms
f(new_overall_uncovered_conditions): 0ms
org.sonar.plugins.cpd.decorators.DuplicationDensityDecorator#2c7c898a: 1ms
PackageTangleIndexDecorator: 0ms
CountUnresolvedIssuesDecorator: 14ms
CountFalsePositivesDecorator: 0ms
org.sonar.plugins.core.technicaldebt.DebtDecorator#23dc70c1: 5ms
org.sonar.plugins.core.technicaldebt.NewDebtDecorator#53b907d9: 2ms
CommentDensityDecorator: 4ms
org.sonar.plugins.uselesscodetracker.decorator.TotalDecorator#1842dc39: 0ms
f(file_complexity): 0ms
f(class_complexity): 0ms
f(function_complexity): 0ms
org.sonar.plugins.core.sensors.CoverageDecorator#6167c42f: 1ms
org.sonar.plugins.core.sensors.LineCoverageDecorator#2cbc2db2: 0ms
org.sonar.plugins.core.sensors.BranchCoverageDecorator#2de96eba: 0ms
org.sonar.plugins.core.sensors.ItLineCoverageDecorator#6296e4bf: 0ms
org.sonar.plugins.core.sensors.ItCoverageDecorator#220cda54: 0ms
org.sonar.plugins.core.sensors.ItBranchCoverageDecorator#39109603: 0ms
org.sonar.plugins.core.sensors.OverallLineCoverageDecorator#4d3990a5: 0ms
org.sonar.plugins.core.sensors.OverallCoverageDecorator#18df26a1: 0ms
org.sonar.plugins.core.sensors.OverallBranchCoverageDecorator#5c459194: 0ms
org.sonar.plugins.core.issue.WeightedIssuesDecorator#fe38c0e: 4ms
ViolationDensityDecorator: 1ms
IssuesDensityDecorator: 0ms
VariationDecorator: 25ms
09:26:39.619 DEBUG - 162 measures to dump
09:26:39.706 INFO - Export results to D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core\sonar-report.json
09:26:39.712 INFO - Store results in database
09:26:39.713 DEBUG - Execute org.sonar.batch.index.ComponentDataPersister
09:26:39.719 DEBUG - Execute org.sonar.batch.issue.IssuePersister
09:26:39.719 DEBUG - IssuePersister skipped in preview mode
09:26:39.719 DEBUG - Execute org.sonar.batch.phases.GraphPersister
09:26:39.804 INFO - ANALYSIS SUCCESSFUL
09:26:39.807 DEBUG - Post-jobs : org.sonar.issuesreport.ReportJob#276aa33f
09:26:39.807 INFO - Executing post-job class org.sonar.issuesreport.ReportJob
09:26:39.813 DEBUG - Generating HTML Report to: D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core\issues-report\issues-report.html
09:26:40.176 INFO - HTML Issues Report generated: D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core\issues-report\issues-report.html
09:26:40.176 DEBUG - Generating Light HTML Report to: D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core\issues-report\issues-report-light.html
09:26:40.212 INFO - Light HTML Issues Report generated: D:\java\workspaces\wks-luna-SR1-01-Sonar\.metadata\.plugins\org.eclipse.core.resources\.projects\prjtest\org.sonar.ide.eclipse.core\issues-report\issues-report-light.html
09:26:40.236 INFO -
------------- Issues Report -------------
No new issue
-------------------------------------------
I am very confused. Can anybody help me ?
I found the solution : custom xpath rules for the xml plugin works on the XML file directly and not on the AST tree ... (unlike the Java Plugin ;))
In my example the xpath rule must be :
/root

Magento stock getting overwritten to 0 on some products

I'm seeing an issue in our Magento 1.5.0.1 store where the stock is getting overwritten to 0 on some products. This seems to be happening automatically and I can't figure out why. I recently installed Lightspeed and SpeedBooster from Tinybrick, which may have something to do with it, but I have since disabled them and still no luck. I'm really at a loss here, so any thoughts, ideas, or debugging tips would be greatly appreciated.
Thanks!
Backtrace Data
2011-09-29T18:10:05+00:00 DEBUG (7): before save, QTY is 0 for 615906-2PK...printing backtrace
2011-09-29T18:10:05+00:00 DEBUG (7): [21] VPS_Stock_Model_Observer::catalog_product_save_before LINE 1265 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Model/App.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [20] Mage_Core_Model_App::_callObserverMethod LINE 1246 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Model/App.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [19] Mage_Core_Model_App::dispatchEvent LINE 416 (/chroot/home/valuepet/valuepetsupplies.com/html/app/Mage.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [18] Mage::dispatchEvent LINE 391 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Model/Abstract.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [17] Mage_Core_Model_Abstract::_beforeSave LINE 306 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Catalog/Model/Abstract.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [16] Mage_Catalog_Model_Abstract::_beforeSave LINE 474 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Catalog/Model/Product.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [15] Mage_Catalog_Model_Product::_beforeSave LINE 316 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Model/Abstract.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [14] Mage_Core_Model_Abstract::save LINE 114 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/CatalogInventory/Model/Stock/Item/Api.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [13] Mage_CatalogInventory_Model_Stock_Item_Api::update LINE ()
2011-09-29T18:10:05+00:00 DEBUG (7): [12] ::call_user_func_array LINE 404 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Api/Model/Server/Handler/Abstract.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [11] Mage_Api_Model_Server_Handler_Abstract::multiCall LINE ()
2011-09-29T18:10:05+00:00 DEBUG (7): [10] SoapServer::handle LINE 832 (/chroot/home/valuepet/valuepetsupplies.com/html/lib/Zend/Soap/Server.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [9] Zend_Soap_Server::handle LINE 145 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Api/Model/Server/Adapter/Soap.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [8] Mage_Api_Model_Server_Adapter_Soap::run LINE 76 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Api/Model/Server.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [7] Mage_Api_Model_Server::run LINE 42 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Api/controllers/IndexController.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [6] Mage_Api_IndexController::indexAction LINE 418 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Controller/Varien/Action.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [5] Mage_Core_Controller_Varien_Action::dispatch LINE 253 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [4] Mage_Core_Controller_Varien_Router_Standard::match LINE 176 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Controller/Varien/Front.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [3] Mage_Core_Controller_Varien_Front::dispatch LINE 340 (/chroot/home/valuepet/valuepetsupplies.com/html/app/code/core/Mage/Core/Model/App.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [2] Mage_Core_Model_App::run LINE 627 (/chroot/home/valuepet/valuepetsupplies.com/html/app/Mage.php)
2011-09-29T18:10:05+00:00 DEBUG (7): [1] Mage::run LINE 80 (/chroot/home/valuepet/valuepetsupplies.com/html/index.php)
2011-09-29T18:10:05+00:00 DEBUG (7): END BACKTRACE
Place a before and after save event listener on the product and stock objects.
Have the listener check for a stock of "0".
If a stock of zero is detected, construct a stack trace via the information in debug_backtrace. You'll want to manually create this, as a circular reference in a backtrace's paramaters can potentially create infinite output.
Use the backtrace to determine where/when the stock is getting set to zero.

Resources