We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4e870e commit 050b908Copy full SHA for 050b908
1 file changed
order-service/app.py
@@ -15,8 +15,8 @@ def place_order():
15
16
@app.route('/order/orders', methods=['GET'])
17
def list_orders():
18
- return jsonify([{"id": 1, "product_id": 1, "status": "confirmed"}])
19
print(f"Queue URL: {queue_url}")
+ return jsonify([{"id": 1, "product_id": 1, "status": "confirmed"}])
20
@app.route('/health', methods=['GET'])
21
def health():
22
return "Order service healthy", 200
0 commit comments