Skip to content
Snippets Groups Projects
  1. Aug 17, 2022
  2. Aug 16, 2022
  3. Aug 15, 2022
  4. Aug 14, 2022
  5. Aug 13, 2022
    • lni's avatar
      logservice: enabled TestGossipInSimulatedCluster (#4468) · a051e31e
      lni authored
      Enabled TestGossipInSimulatedCluster to be always executed, it simulates a 48 nodes cluster to test gossip on log shard info. The test is slightly tweaked to check all nodes except one can get expected shard info in a timely manner.
      
      Updated go.mod to use a private fork of memberlist for now as the upstream version has known data race issue.
      
      Approved by: @yingfeng
    • fagongzi's avatar
      txn: add context parameter to TxnStorage (#4498) · 04e3d6e7
      fagongzi authored
      Add context parameter to TxnStorage
      
      Approved by: @reusee, @lni
    • fengttt's avatar
      Remove tae types. (#4500) · e3efc617
      fengttt authored
      * Remove tae types.
      
      One type system for all.
      
      Removed tae types.   Moved encoding into types to reduce a cyclic
      dependencies.
      
      Most the changes are like
      find . -type f -exec sed -i 's/Type_BOOL/T_bool/g' {} \;
      
      Some mock code in tae types are moved to container types. I don't think
      those clock related actually belongs to types, but kept within types so
      that the rest of the code refactoring is automatic.
      
      * go fmt.