Upgrade deps
This commit is contained in:
parent
3e05717395
commit
5459d4c3f8
@ -1,3 +1,11 @@
|
||||
- 0.2.7
|
||||
* Upgrade chainlib
|
||||
- 0.2.6
|
||||
* Deps upgrade
|
||||
- 0.2.5
|
||||
* Deps upgrade
|
||||
- 0.2.4
|
||||
* Allow omission of state store sync in queue store backend
|
||||
- 0.2.2
|
||||
* Fix missing symbol crashes related to race conditions
|
||||
- 0.2.1
|
||||
|
@ -51,11 +51,11 @@ class ChaindFsAdapter(ChaindAdapter):
|
||||
logg.error('I am just a simple syncer and do not know how to handle the state which the tx {} is in: {}'.format(tx_hash, e))
|
||||
return None
|
||||
except FileNotFoundError as e:
|
||||
logg.debug('queuestore get {} failed, possible race condition (will try again): {}'.format(tx_hash, e))
|
||||
logg.debug('queuestore get (file missing) {} failed, possible race condition (will try again): {}'.format(tx_hash, e))
|
||||
store_lock.again()
|
||||
continue
|
||||
except StateLockedKey as e:
|
||||
logg.debug('queuestore get {} failed, possible race condition (will try again): {}'.format(tx_hash, e))
|
||||
logg.debug('queuestore get (statelock) {} failed, possible race condition (will try again): {}'.format(tx_hash, e))
|
||||
store_lock.again()
|
||||
continue
|
||||
|
||||
|
@ -54,7 +54,7 @@ class StateFilter(SyncFilter):
|
||||
logg.debug('skipping not local transaction {}'.format(tx.hash))
|
||||
return False
|
||||
except BackendError as e:
|
||||
logg.error('adapter instantiation failed: {}, one more try'.format(e))
|
||||
logg.error('adapter get failed: {}, one more try'.format(e))
|
||||
queue_adapter = None
|
||||
store_lock.again()
|
||||
continue
|
||||
|
@ -5,7 +5,7 @@ import time
|
||||
from .error import BackendError
|
||||
|
||||
BASE_DELAY = 0.01
|
||||
BASE_DELAY_LIMIT = 3.0
|
||||
BASE_DELAY_LIMIT = 10.0
|
||||
|
||||
|
||||
class StoreLock:
|
||||
|
@ -1,5 +1,5 @@
|
||||
chainlib~=0.1.1
|
||||
chainqueue~=0.1.10
|
||||
chainlib~=0.1.2
|
||||
chainqueue~=0.1.11
|
||||
chainsyncer~=0.4.3
|
||||
confini~=0.6.0
|
||||
funga~=0.5.2
|
||||
|
Loading…
Reference in New Issue
Block a user