@anterior/brrr 0.1.242 → 0.1.243

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -109,7 +109,7 @@ $ nix run github:anteriorai/brrr#demo
109
109
  In the process list, select the worker process so you can see its output. Now in another terminal:
110
110
 
111
111
  ```
112
- $ curl 'http://localhost:8333/hello?greetee=John'
112
+ $ curl -X POST 'http://localhost:8080/hello?greetee=John'
113
113
  ```
114
114
 
115
115
  You should see the worker print a greeting.
@@ -117,7 +117,7 @@ You should see the worker print a greeting.
117
117
  You can also run a Fibonacci job:
118
118
 
119
119
  ```
120
- $ curl 'http://localhost:8333/fib_and_print?n=11'
120
+ $ curl -X POST 'http://localhost:8080/calc_and_print?op=fib&n=11'
121
121
  ```
122
122
 
123
123
  ## Implementation and Trade-Offs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anterior/brrr",
3
- "version": "0.1.242",
3
+ "version": "0.1.243",
4
4
  "description": "Horizontally scalable workflow scheduling with pluggable backends",
5
5
  "type": "module",
6
6
  "bin": {