This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Checking whether the PLT /Users/knilsson/code/rabbitmq/rabbitmq-public-umbrella-master/deps/rabbitmq_shovel/.rabbitmq_shovel.plt is up-to-date... yes | |
Proceeding with analysis... | |
Elixir.RabbitMQ.CLI.Ctl.Commands.DeleteShovelCommand.erl:19: Callback info about the 'Elixir.RabbitMQ.CLI.CommandBehaviour' behaviour is not available | |
Elixir.RabbitMQ.CLI.Ctl.Commands.DeleteShovelCommand.erl:53: Function run/2 has no local return | |
Elixir.RabbitMQ.CLI.Ctl.Commands.ShovelStatusCommand.erl:19: Callback info about the 'Elixir.RabbitMQ.CLI.CommandBehaviour' behaviour is not available | |
Elixir.RabbitMQ.CLI.Ctl.Commands.ShovelStatusCommand.erl:54: Function run/2 has no local return | |
Unknown functions: | |
'Elixir.RabbitMQ.CLI.Core.Helpers':cli_acting_user/0 | |
'Elixir.RabbitMQ.CLI.DefaultOutput':output/3 | |
crypto:strong_rand_bytes/1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'add'/2 = | |
fun (_a0,_b0) -> | |
call 'erlang':'+'(_a0,_b0) | |
'addFive'/0 = | |
fun () -> | |
let <_a0> = 5 | |
in fun (_b0) -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
erlang.mk:6496: warning: overriding recipe for target 'show-ERL_LIBS' | |
/Users/knilsson/code/rabbitmq/rabbitmq-public-umbrella-master/deps/rabbit_common/mk/rabbitmq-tools.mk:80: warning: ignoring old recipe for target 'show-ERL_LIBS' | |
erlang.mk:6499: warning: overriding recipe for target 'show-ERLC_OPTS' | |
/Users/knilsson/code/rabbitmq/rabbitmq-public-umbrella-master/deps/rabbit_common/mk/rabbitmq-tools.mk:83: warning: ignoring old recipe for target 'show-ERLC_OPTS' | |
erlang.mk:6502: warning: overriding recipe for target 'show-TEST_ERLC_OPTS' | |
/Users/knilsson/code/rabbitmq/rabbitmq-public-umbrella-master/deps/rabbit_common/mk/rabbitmq-tools.mk:86: warning: ignoring old recipe for target 'show-TEST_ERLC_OPT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Checking whether the PLT /Users/knilsson/code/rabbitmq/rabbitmq-public-umbrella-master/deps/rabbitmq_shovel/.rabbitmq_shovel.plt is up-to-date... yes | |
Proceeding with analysis... | |
Elixir.RabbitMQ.CLI.Ctl.Commands.DeleteShovelCommand.erl:19: Callback info about the 'Elixir.RabbitMQ.CLI.CommandBehaviour' behaviour is not available | |
Elixir.RabbitMQ.CLI.Ctl.Commands.DeleteShovelCommand.erl:53: Function run/2 has no local return | |
Elixir.RabbitMQ.CLI.Ctl.Commands.ShovelStatusCommand.erl:19: Callback info about the 'Elixir.RabbitMQ.CLI.CommandBehaviour' behaviour is not available | |
Elixir.RabbitMQ.CLI.Ctl.Commands.ShovelStatusCommand.erl:54: Function run/2 has no local return | |
Unknown functions: | |
'Elixir.RabbitMQ.CLI.Core.Helpers':cli_acting_user/0 | |
'Elixir.RabbitMQ.CLI.DefaultOutput':output/3 | |
done in 0m1.36s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let consume (m: IModel) queue f = | |
let consumer = | |
{ new DefaultBasicConsumer(m) with | |
member x.HandleBasicDeliver(consumerTag, | |
deliveryTag, | |
redelivered, | |
exchange, | |
routingKey, | |
props, | |
body) = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
using RabbitMQ.Client; | |
using RabbitMQ.Client.Events; | |
namespace ConsoleApplication | |
{ | |
public class Program | |
{ | |
public static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let xname s = XName.Get s | |
let xn s = XName.Get s | |
let xe n (v: obj) = new XElement(xn (msbuildns + n), v) | |
let xa n (v: obj) = new XAttribute(xn n, v) | |
let (|Head|_|) = | |
Seq.tryFind (fun _ -> true) | |
let (|Value|) (xe: XElement) = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Ops = | |
{ Do1: string -> int | |
Do2: int -> string } | |
let myFunc { Do1 = do1 } s = | |
do1 s | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//invaluable for all those Choice<'a, exn> flows | |
let exnf f = Printf.ksprintf (fun s -> exn s) f | |
//combine paths | |
let (</>) x y = System.IO.Path.Combine(x, y) | |
//allows you to pattern match on values in the current scope rather than just literals | |
let (|Eq|_|) expected value = | |
if expected = value then Some () | |
else None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-07-08 12:56:01 +0100 [warn]: temporarily failed to flush the buffer. next_retry=2015-07-08 12:57:09 +0100 error_class="NoMethodError" error="undefined method `&' for 1436356479.1659427:Float" instance=70010588238460 | |
2015-07-08 12:56:01 +0100 [warn]: /usr/lib/fluent/ruby/lib/ruby/gems/1.9.1/gems/beefcake-0.5.0/lib/beefcake/buffer/encode.rb:86:in `append_uint64' | |
2015-07-08 12:56:01 +0100 [warn]: /usr/lib/fluent/ruby/lib/ruby/gems/1.9.1/gems/beefcake-0.5.0/lib/beefcake/buffer/encode.rb:61:in `append_int64' | |
2015-07-08 12:56:01 +0100 [warn]: /usr/lib/fluent/ruby/lib/ruby/gems/1.9.1/gems/beefcake-0.5.0/lib/beefcake/buffer/encode.rb:13:in `append' | |
2015-07-08 12:56:01 +0100 [warn]: /usr/lib/fluent/ruby/lib/ruby/gems/1.9.1/gems/beefcake-0.5.0/lib/beefcake.rb:102:in `block in encode!' | |
2015-07-08 12:56:01 +0100 [warn]: /usr/lib/fluent/ruby/lib/ruby/gems/1.9.1/gems/beefcake-0.5.0/lib/beefcake.rb:90:in `each' | |
2015-07-08 12:56:01 +0100 [warn]: /usr/lib/fluent/ruby/lib/ruby/gems/1.9.1/gems/beefcake-0.5.0/li |