<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Activiti Deadlock and Optimistic Exceptions in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/activiti-deadlock-and-optimistic-exceptions/m-p/34488#M14550</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Problem&lt;/STRONG&gt; :&lt;/P&gt;&lt;P&gt;Recently when we started doing load testing we encountered a lot of activiti optimistic exceptions and deadlock exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Configuration&lt;/STRONG&gt; :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;We are using Activiti 5.19 for managing our workflows.&lt;/LI&gt;&lt;LI&gt;We have very large running processes which take 6 hours. We have multiple nodes (4) behind our load balancer. We have one job executor per node configured.&lt;/LI&gt;&lt;LI&gt;All our processes are activiti:async = true, activiti:exclusive =true.&lt;/LI&gt;&lt;LI&gt;We have a lot of call activities nested inside the flows. First flow to Last flow we have around 11 nested flows inside.&lt;/LI&gt;&lt;LI&gt;We have many multi instance calls through out the workflow. And we have lot of scenarios where parallel sub process end at the same time.&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;We have Audit level logging - processEngineConfiguration.setHistoryLevel(HistoryLevel.AUDIT);&lt;/LI&gt;&lt;LI&gt;So I was wondering if you can suggest us some configuration that we need to do when using multiple nodes to avoid these deadlocks or optimistic exceptions.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Spring process configuration:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE style="color: #000000; background-color: #ffffff; font-size: 10.8pt;"&gt;processEngineConfiguration.setDataSource(dataSource);&lt;BR /&gt; processEngineConfiguration.setDatabaseSchemaUpdate(&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"true"&lt;/SPAN&gt;);&lt;BR /&gt; processEngineConfiguration.setHistoryLevel(HistoryLevel.AUDIT);&lt;BR /&gt; processEngineConfiguration.setAsyncExecutorEnabled(&lt;SPAN style="color: #000080; font-weight: bold;"&gt;true&lt;/SPAN&gt;);&lt;BR /&gt; processEngineConfiguration.setAsyncExecutorActivate(&lt;SPAN style="color: #000080; font-weight: bold;"&gt;true&lt;/SPAN&gt;);&lt;BR /&gt; processEngineConfiguration.setFailedJobCommandFactory(&lt;SPAN style="color: #000080; font-weight: bold;"&gt;new &lt;/SPAN&gt;NoRetryFailedJobCommandFactory());&lt;BR /&gt; processEngineConfiguration.setSchemaCommandConfig(&lt;SPAN style="color: #000080; font-weight: bold;"&gt;new &lt;/SPAN&gt;CommandConfig());&lt;BR /&gt;&lt;SPAN style="color: #808080;"&gt;// processEngineConfiguration.setAsyncExecutor(getCustomJobExecutor());&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt; //setting activiti optimistic locking exception retry&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt; &lt;/SPAN&gt;List&amp;lt;CommandInterceptor&amp;gt; listOfInterceptors = &lt;SPAN style="color: #000080; font-weight: bold;"&gt;new &lt;/SPAN&gt;ArrayList&amp;lt;&amp;gt;();&lt;BR /&gt; RetryInterceptor retryInterceptor = &lt;SPAN style="color: #000080; font-weight: bold;"&gt;new &lt;/SPAN&gt;RetryInterceptor();&lt;BR /&gt; retryInterceptor.setNumOfRetries(&lt;SPAN style="color: #0000ff;"&gt;6&lt;/SPAN&gt;);&lt;BR /&gt; retryInterceptor.setWaitTimeInMs(&lt;SPAN style="color: #0000ff;"&gt;1000&lt;/SPAN&gt;);&lt;BR /&gt; retryInterceptor.setWaitIncreaseFactor(&lt;SPAN style="color: #0000ff;"&gt;5&lt;/SPAN&gt;);&lt;BR /&gt; listOfInterceptors.add(retryInterceptor);&lt;BR /&gt; processEngineConfiguration.setCustomPreCommandInterceptors(listOfInterceptors);&lt;/PRE&gt;&lt;P&gt;Mysql DB Configuration :&lt;/P&gt;&lt;PRE style="color: #000000; background-color: #ffffff; font-size: 10.8pt;"&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;db.initialsize&lt;/SPAN&gt;: &lt;SPAN style="color: #0000ff;"&gt;50&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;db.maxactive&lt;/SPAN&gt;: &lt;SPAN style="color: #0000ff;"&gt;50&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;db.maxidle&lt;/SPAN&gt;: &lt;SPAN style="color: #0000ff;"&gt;15&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;db.minidle&lt;/SPAN&gt;: &lt;SPAN style="color: #0000ff;"&gt;5&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;db.maxwait&lt;/SPAN&gt;: &lt;SPAN style="color: #0000ff;"&gt;10000&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;db.minEvictableIdleTimeMillis&lt;/SPAN&gt;: &lt;SPAN style="color: #0000ff;"&gt;50000&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;db.timeBetweenEvictionRunsMillis&lt;/SPAN&gt;: &lt;SPAN style="color: #0000ff;"&gt;30000&lt;/SPAN&gt;,&lt;/PRE&gt;&lt;P&gt;Exception details :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Optimistic Exception Details :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[pool-2-thread-4] ERROR o.a.e.i.a.ExecuteAsyncRunnable - Job 200444800 failed&lt;BR /&gt;org.activiti.engine.ActivitiException: 6 retries failed with ActivitiOptimisticLockingException. Giving up.&lt;BR /&gt; at org.activiti.engine.impl.interceptor.RetryInterceptor.execute(RetryInterceptor.java:58) ~[activiti-engine-5.19.0.jar:5.19.0]&lt;BR /&gt; at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:40) ~[activiti-engine-5.19.0.jar:5.19.0]&lt;BR /&gt; at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:35) ~[activiti-engine-5.19.0.jar:5.19.0]&lt;BR /&gt; at org.activiti.engine.impl.asyncexecutor.ExecuteAsyncRunnable.run(ExecuteAsyncRunnable.java:69) ~[activiti-engine-5.19.0.jar:5.19.0]&lt;BR /&gt; at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [na:1.8.0_144]&lt;BR /&gt; at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [na:1.8.0_144]&lt;BR /&gt; at java.lang.Thread.run(Thread.java:748) [na:1.8.0_144]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Deadlock Exception details :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;org.apache.ibatis.exceptions.PersistenceException: &lt;BR /&gt;### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Deadlock found when trying to get lock; try restarting transaction&lt;BR /&gt;### The error may involve org.activiti.engine.impl.persistence.entity.ExecutionEntity.updateExecution-Inline&lt;BR /&gt;### The error occurred while setting parameters&lt;BR /&gt;### SQL: update ACT_RU_EXECUTION set REV_ = ?, BUSINESS_KEY_ = ?, PROC_DEF_ID_ = ?, ACT_ID_ = ?, IS_ACTIVE_ = ?, IS_CONCURRENT_ = ?, IS_SCOPE_ = ?, IS_EVENT_SCOPE_ = ?, PARENT_ID_ = ?, SUPER_EXEC_ = ?, SUSPENSION_STATE_ = ?, CACHED_ENT_STATE_ = ?, NAME_ = ? where ID_ = ? and REV_ = ?&lt;BR /&gt;### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Deadlock found when trying to get lock; try restarting transaction&lt;BR /&gt; at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:23)&lt;BR /&gt; at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:150)&lt;BR /&gt; at org.activiti.engine.impl.db.DbSqlSession.flushUpdates(DbSqlSession.java:871)&lt;BR /&gt; at org.activiti.engine.impl.db.DbSqlSession.flush(DbSqlSession.java:612)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandContext.flushSessions(CommandContext.java:212)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandContext.close(CommandContext.java:138)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandContextInterceptor.execute(CommandContextInterceptor.java:66)&lt;BR /&gt; at org.activiti.spring.SpringTransactionInterceptor$1.doInTransaction(SpringTransactionInterceptor.java:47)&lt;BR /&gt; at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:133)&lt;BR /&gt; at org.activiti.spring.SpringTransactionInterceptor.execute(SpringTransactionInterceptor.java:45)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.LogInterceptor.execute(LogInterceptor.java:37)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.RetryInterceptor.execute(RetryInterceptor.java:49)&lt;BR /&gt; at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:40)&lt;BR /&gt; at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:35)&lt;BR /&gt; at org.activiti.engine.impl.asyncexecutor.ExecuteAsyncRunnable.run(ExecuteAsyncRunnable.java:69)&lt;BR /&gt; at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)&lt;BR /&gt; at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)&lt;BR /&gt; at java.lang.Thread.run(Thread.java:748)&lt;BR /&gt;Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Deadlock found when trying to get lock; try restarting transaction&lt;BR /&gt; at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)&lt;BR /&gt; at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)&lt;BR /&gt; at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)&lt;BR /&gt; at java.lang.reflect.Constructor.newInstance(Constructor.java:423)&lt;BR /&gt; at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)&lt;BR /&gt; at com.mysql.jdbc.Util.getInstance(Util.java:408)&lt;BR /&gt; at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:951)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)&lt;BR /&gt; at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)&lt;BR /&gt; at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)&lt;BR /&gt; at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)&lt;BR /&gt; at org.apache.commons.dbcp.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:169)&lt;BR /&gt; at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source)&lt;BR /&gt; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)&lt;BR /&gt; at java.lang.reflect.Method.invoke(Method.java:498)&lt;BR /&gt; at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:55)&lt;BR /&gt; at com.sun.proxy.$Proxy140.execute(Unknown Source)&lt;BR /&gt; at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:41)&lt;BR /&gt; at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:66)&lt;BR /&gt; at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:45)&lt;BR /&gt; at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:100)&lt;BR /&gt; at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:75)&lt;BR /&gt; at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:148)&lt;BR /&gt; ... 16 more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;org.apache.ibatis.exceptions.PersistenceException: &lt;BR /&gt;### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Deadlock found when trying to get lock; try restarting transaction&lt;BR /&gt;### The error may involve org.activiti.engine.impl.persistence.entity.HistoricVariableInstanceEntity.updateHistoricVariableInstance-Inline&lt;BR /&gt;### The error occurred while setting parameters&lt;BR /&gt;### SQL: update ACT_HI_VARINST set REV_ = ?, BYTEARRAY_ID_ = ?, DOUBLE_ = ?, LONG_ = ?, TEXT_ = ?, TEXT2_ = ?, VAR_TYPE_ = ?, LAST_UPDATED_TIME_ = ? where ID_ = ? and REV_ = ?&lt;BR /&gt;### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Deadlock found when trying to get lock; try restarting transaction&lt;BR /&gt; at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:23)&lt;BR /&gt; at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:150)&lt;BR /&gt; at org.activiti.engine.impl.db.DbSqlSession.flushUpdates(DbSqlSession.java:871)&lt;BR /&gt; at org.activiti.engine.impl.db.DbSqlSession.flush(DbSqlSession.java:612)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandContext.flushSessions(CommandContext.java:212)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandContext.close(CommandContext.java:138)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandContextInterceptor.execute(CommandContextInterceptor.java:66)&lt;BR /&gt; at org.activiti.spring.SpringTransactionInterceptor$1.doInTransaction(SpringTransactionInterceptor.java:47)&lt;BR /&gt; at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:133)&lt;BR /&gt; at org.activiti.spring.SpringTransactionInterceptor.execute(SpringTransactionInterceptor.java:45)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.LogInterceptor.execute(LogInterceptor.java:37)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.RetryInterceptor.execute(RetryInterceptor.java:49)&lt;BR /&gt; at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:40)&lt;BR /&gt; at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:35)&lt;BR /&gt; at org.activiti.engine.impl.asyncexecutor.ExecuteAsyncRunnable.run(ExecuteAsyncRunnable.java:69)&lt;BR /&gt; at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)&lt;BR /&gt; at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)&lt;BR /&gt; at java.lang.Thread.run(Thread.java:748)&lt;BR /&gt;Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Deadlock found when trying to get lock; try restarting transaction&lt;BR /&gt; at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)&lt;BR /&gt; at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)&lt;BR /&gt; at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)&lt;BR /&gt; at java.lang.reflect.Constructor.newInstance(Constructor.java:423)&lt;BR /&gt; at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)&lt;BR /&gt; at com.mysql.jdbc.Util.getInstance(Util.java:408)&lt;BR /&gt; at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:951)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)&lt;BR /&gt; at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)&lt;BR /&gt; at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)&lt;BR /&gt; at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)&lt;BR /&gt; at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)&lt;BR /&gt; at org.apache.commons.dbcp.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:169)&lt;BR /&gt; at sun.reflect.GeneratedMethodAccessor105.invoke(Unknown Source)&lt;BR /&gt; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)&lt;BR /&gt; at java.lang.reflect.Method.invoke(Method.java:498)&lt;BR /&gt; at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:55)&lt;BR /&gt; at com.sun.proxy.$Proxy141.execute(Unknown Source)&lt;BR /&gt; at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:41)&lt;BR /&gt; at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:66)&lt;BR /&gt; at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:45)&lt;BR /&gt; at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:100)&lt;BR /&gt; at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:75)&lt;BR /&gt; at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:148)&lt;BR /&gt; ... 16 more&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Oct 2017 16:55:05 GMT</pubDate>
    <dc:creator>archana071</dc:creator>
    <dc:date>2017-10-20T16:55:05Z</dc:date>
    <item>
      <title>Activiti Deadlock and Optimistic Exceptions</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/activiti-deadlock-and-optimistic-exceptions/m-p/34488#M14550</link>
      <description>Hi all,Problem :Recently when we started doing load testing we encountered a lot of activiti optimistic exceptions and deadlock exceptions.Configuration :We are using Activiti 5.19 for managing our workflows.We have very large running processes which take 6 hours. We have multiple nodes (4) behind o</description>
      <pubDate>Fri, 20 Oct 2017 16:55:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/activiti-deadlock-and-optimistic-exceptions/m-p/34488#M14550</guid>
      <dc:creator>archana071</dc:creator>
      <dc:date>2017-10-20T16:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Deadlock and Optimistic Exceptions</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/activiti-deadlock-and-optimistic-exceptions/m-p/34489#M14551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd be interested in what your async tasks are doing. Are the ones that hit these issues short-lived or long-lived? It would be great if we could put together a reproducer. Apologies that it has been a while (I came across this when looking at another forum thread). Your use-case is certainly of interest (and architecturally sounds like the kind of case we want Activiti 7 to help with).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 10:16:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/activiti-deadlock-and-optimistic-exceptions/m-p/34489#M14551</guid>
      <dc:creator>ryandawson</dc:creator>
      <dc:date>2018-02-13T10:16:36Z</dc:date>
    </item>
  </channel>
</rss>

