You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we change the configurable timeout parameters it is taking default value only (#251)
* When we change the configurable timeout parameters it is taking default values
instead of changed values.
Co-authored-by: Vishnu <vishnu.alapati@ericsson.com>
Copy file name to clipboardExpand all lines: wiki/markdown/statusCodes.md
+41-1Lines changed: 41 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,8 @@ Below is the status codes:
15
15
| 404 | RabbitMQ properties not found | RabbitMQ properties not configured for the protocol <protocol> | Is returned if RabbitMQ message broker properties are not found for the protocol used by event. |
16
16
| 500 | Internal Server Error | RabbitMQ is down. Please try later | Is returned if RabbitMQ is down. |
17
17
||| Could not prepare Routing key to publish message. | Is returned if could not prepare routing key to publish the eiffel event. |
18
-
| 503 | Service Unavailable | Please check previous event and try again later | Is returned if there is a failure in publishing previous event with status code 400, 404 or 500. |
18
+
| 503 | Service Unavailable | Please check previous event and try again later | Is returned if there is a failure in publishing previous event with status code 400, 404 or 500.
19
+
| 504 | Gateway Timeout | Time out waiting for ACK | Is returned if event is not confirmed within waitForConfirmsTimeout. |
19
20
20
21
### Status codes explanation
21
22
@@ -114,6 +115,45 @@ Event is failed to send because of internal server error.
114
115
}
115
116
]
116
117
```
118
+
When previous Event is failed to send because of Gateway Timeout.
119
+
120
+
```
121
+
[
122
+
{
123
+
"id": "9cdd0f68-df85-44b0-88bd-fc4163ac90a0",
124
+
"status_code": 500,
125
+
"result": "Internal Server Error",
126
+
"message": "Channel was closed for Rabbitmq connection <hostaddress>"
127
+
}
128
+
]
129
+
```
130
+
131
+
When message is nack-ed i.e broker could not take care of it for some reason.
132
+
133
+
```
134
+
[
135
+
{
136
+
"id": "9cdd0f68-df85-44b0-88bd-fc4163ac90a0",
137
+
"status_code": 500,
138
+
"result": "Internal Server Error",
139
+
"message": "Message is nacked"
140
+
}
141
+
]
142
+
```
143
+
144
+
**504 Gateway Timeout**
145
+
146
+
Event is not confirmed by RabbitMq within specified waitForConfirmsTimeout.
0 commit comments