facebookarchive / swift

An annotation-based Java library for creating Thrift serializable types and services.
Apache License 2.0
900 stars 297 forks source link

Fixed LoadGenerator to export stats to JMX. #95

Closed alandau closed 11 years ago

alandau commented 11 years ago

The bug was that 2 instances of A?SyncClientWorker were created. One was used to export stats, the other to do actualy thrfit calls. The result was that the exported counters were always 0. With this fix, only one instance is created and stats are shown correctly.