There is a lot of interceptors, which must be not executed while creating/updating items from sync process.
Unfortunately hybris doesn’t have OOTB functionality to do this, also SyncItemJob doesn’t put any attribute in session, which will indicate, that current execution context is a synchronization job, so the only way, which I found to resolve it, was to iterate via tread execution stack and check the class names.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
packagecom.blog.core.utils.impl;publicclassBlogThreadInvestigateUtil{privateBlogThreadInvestigateUtil(){thrownewUnsupportedOperationException("This is Utility class.");}publicstaticbooleanisRunBySyncProcess(){for(StackTraceElementelement:Thread.currentThread().getStackTrace()){if(element.getClassName().toLowerCase().contains("catalogversionsync")){returntrue;}}returnfalse;}}
UPD 2019-01-31
Finally hybris added session attribute, which indicates if interceptor is run from sync process.