File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 5
5
- Add a ` :response-executor ` option to control on which thread responses to
6
6
server-initiated requests are run, defaulting to Promesa's ` :default `
7
7
executor, i.e. ` ForkJoinPool/commonPool ` .
8
+ - Fix work done progress notification to allow nullable ` message ` .
8
9
9
10
## v1.10.0
10
11
Original file line number Diff line number Diff line change 39
39
(= 0 percentage) {:kind :begin
40
40
:title message
41
41
:percentage 0 }
42
- (= 100 percentage) {:kind :end
43
- :message message}
42
+ (= 100 percentage) ( cond-> {:kind :end }
43
+ message ( assoc :message message))
44
44
:else
45
45
(cond->
46
- {:kind :report
47
- :message message}
46
+ {:kind :report }
47
+ message ( assoc :message message)
48
48
percentage (assoc :percentage percentage)))]
49
49
{:token progress-token
50
50
:value progress}))))
You can’t perform that action at this time.
0 commit comments