@cellaware/utils 5.0.4 → 5.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ const STATUS_SERVICE_UNAVAILABLE = 503;
7
7
  const RETRY_SLEEP_MS = 3000;
8
8
  const MAX_RETRIES = 3;
9
9
  async function functionFetch(url, req) {
10
- let res = new Response(null, { status: STATUS_SERVICE_UNAVAILABLE });
10
+ let res = new Response(null, { status: STATUS_SERVICE_UNAVAILABLE, statusText: 'Service Unavailable' });
11
11
  let retryNum = 0;
12
12
  do {
13
13
  if (retryNum > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "5.0.4",
3
+ "version": "5.0.5",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",