Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinFrasch committed May 11, 2024
1 parent 4ba6064 commit 1e6e80a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/vectordb_sync/vectordb_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def empty_redis():
redis.delete('content_queue')
return jsonify({"message": "Redis queue cleared"}), 200

@app.route('/redis_lenght', methods=['POST'])
def redis_lenght():
@app.route('/redis_length', methods=['POST'])
def redis_length():
len = redis.llen('content_queue')
return jsonify({"message": len}), 200

Expand Down

0 comments on commit 1e6e80a

Please sign in to comment.