Skip to content

Commit

Permalink
$ mix format lib/appsignal/plug.ex
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkreeftmeijer committed Mar 13, 2018
1 parent ae035dd commit 1f37ef3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/appsignal/plug.ex
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ if Appsignal.plug?() do
)

def call(conn, opts) do
transaction = @transaction.generate_id()
|> @transaction.start(:http_request)
|> Appsignal.Plug.try_set_action(conn)
transaction =
@transaction.generate_id()
|> @transaction.start(:http_request)
|> Appsignal.Plug.try_set_action(conn)

conn = Plug.Conn.put_private(conn, :appsignal_transaction, transaction)

Expand Down

0 comments on commit 1f37ef3

Please sign in to comment.