Alexandre Ardhuin
Alexandre Ardhuin
After a weekend without traffic on a rabbitmq connection the first publication leads to the following message in rabbitmq logs: ``` =INFO REPORT==== 22-Mar-2019::08:04:05 === connection (10.233.77.108:54878 -> 10.233.81.213:5672): user...
In `dart_amqp-0.1.1` I can see a `TuningSettings.heartbeatPeriod` but this property doesn't seem to be used. Is it supposed to work?
Related to [dart-lang/linter#3391](https://github.com/dart-lang/linter/issues/3391) this PR exports public API types from painting library.
Follow up on dart-lang/linter#2530 On the following example `functionExpression.staticParameterElement.library` is `null` for the generic case `ff` but not for `f`. Both should be set with a non-null variable. ```dart class...
# Description rework avoid_types_on_closure_parameters to allow not-redundant types Fixes #3330 Fixes #2131 Fixes #1099
# Description This PR checks trailing commas in list/set/map literals.
The following code triggers `prefer_const_constructors_in_immutables` on `A` constructor but it shouldn't as [enum comparisons are not yet allowed in asserts](https://github.com/dart-lang/language/issues/312). ```dart enum E { a, b } @immutable class A...
with Dart 2.4.0 ```dart final l = List.generate(1, (i) => i); class A { const A(this.p); factory A.f() => A([ // prefer_const_constructors false positive here for (int i in l)...
Not sure if it is wanted but if I use an option with a dot like `p.name` then args are not read correctly. ```dart final parser = ArgParser(); parser.addOption('p.name'); print(parser.parse(['--p.name',...
I have a gRPC service (in dart) that provides a rpc method returning a stream of messages. In some cases, this stream may stay without message during a long time....