this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix FreeList not acquiring its own blocks (oops)

garrison 1a54abce 735befca

+1 -1
+1 -1
lib/xks/free_list.ex
··· 158 158 159 159 # Note: blocks reserved for persisting the FreeList itself are not persisted *in* the FreeList on disk, 160 160 # however they are known when reading (obviously) and can therefore be reserved (and promptly released) at startup 161 - [block_index] = reserve_blocks(free_list, 1) 161 + [block_index] = reserve_and_acquire_blocks(free_list, 1) 162 162 163 163 block_checksum = Blocks.write(block_store, block_index, block_data) 164 164 {block_index, block_checksum}