Skip to content

Commit

Permalink
sync replica up.
Browse files Browse the repository at this point in the history
  • Loading branch information
hoseinaghaei committed Feb 15, 2024
1 parent 84c712f commit 187571f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kafka_server/broker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def init():
heartbeat_thread.daemon = True
heartbeat_thread.start()

# sync_thread = threading.Thread(target=schedule_sync_thread)
# sync_thread.daemon = True
# sync_thread.start()
sync_thread = threading.Thread(target=schedule_sync_thread)
sync_thread.daemon = True
sync_thread.start()

sync_replica_thread = threading.Thread(target=sync_replica)
sync_replica_thread.daemon = True
Expand Down

0 comments on commit 187571f

Please sign in to comment.