Skip to content

Commit

Permalink
build kv based TaskService (#13228)
Browse files Browse the repository at this point in the history
* chore(tasks): task kv

* WIP

* get the kv task service complete and passing test
  • Loading branch information
lyondhill committed Apr 9, 2019
1 parent 2463114 commit c29e77e
Show file tree
Hide file tree
Showing 6 changed files with 2,014 additions and 172 deletions.
4 changes: 4 additions & 0 deletions kv/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ func (s *Service) Initialize(ctx context.Context) error {
return err
}

if err := s.initializeTasks(ctx, tx); err != nil {
return err
}

if err := s.initializePasswords(ctx, tx); err != nil {
return err
}
Expand Down
Loading

0 comments on commit c29e77e

Please sign in to comment.