Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`brod:transaction` spec is: ```erlang -spec transaction(client(), transactional_id(), transaction_config()) -> {ok, transaction()}. ``` and brod_transaction:init also has: ```erlang init({Client, TxId, PropListConfig}) -> ClientPid = pid(Client), ``` but new and start_link were expecting only a pid. The client() spec itself is: ```erlang -type client() :: client_id() | pid(). ```
- Loading branch information