Compare commits

4 Commits

Author SHA1 Message Date
lash
637ead1a38 Improve log output for unlocking tool 2022-05-07 11:27:01 +00:00
lash
412018fc64 Upgrade shep to avoid sync in persist set 2022-05-05 17:05:39 +00:00
lash
95663621bc Update changelog 2022-05-05 15:43:54 +00:00
lash
0726f7a730 Upgrade shep, handle exception in filestore list in shep 2022-05-05 15:39:18 +00:00
4 changed files with 17 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
* 0.4.8
- Add unlock action description to info loglevel for unlock tool
* 0.4.7
- Upgrade shep to avoid sync in persist set
* 0.4.6
- Upgrade shep to handle filesystem list exception
* 0.4.5
- Upgrade chainlib
- Upgrade shep to guarantee atomic state locks

View File

@@ -329,7 +329,8 @@ class SyncStore:
if locked_item_key == None:
return False
locked_item = self.get(locked_item_key)
locked_state = self.filter_state.state(locked_item_key) - self.filter_state.state_store.LOCK
state = self.filter_state.state(locked_item_key)
locked_state = state - self.filter_state.state_store.LOCK
locked_state_name = self.filter_state.name(locked_state)
logg.debug('found locked item {} in state {}'.format(locked_item, locked_state))
@@ -339,10 +340,17 @@ class SyncStore:
if i == -1:
raise FilterInitializationError('locked state {} ({}) found for item {}, but matching filter has not been registered'.format(locked_state_name, locked_state, locked_item))
direction = None
if revert:
self.__unlock_previous(locked_item, fltrs, i)
new_state = self.filter_state.state(locked_item_key)
direction = 'previous'
else:
self.__unlock_next(locked_item, fltrs, i)
new_state = self.filter_state.state(locked_item_key)
direction = 'next'
logg.info('chainstate unlock to {} {} ({}) -> {} ({})'.format(direction, self.filter_state.name(state), state, self.filter_state.name(new_state), new_state))
return True

View File

@@ -2,4 +2,4 @@ confini~=0.6.0
semver==2.13.0
hexathon~=0.1.6
chainlib~=0.1.2
shep~=0.2.6
shep~=0.2.8

View File

@@ -1,6 +1,6 @@
[metadata]
name = chainsyncer
version = 0.4.5
version = 0.4.8
description = Generic blockchain syncer driver
author = Louis Holbrook
author_email = dev@holbrook.no