Skip to content

Instantly share code, notes, and snippets.

/opt/graylog2/web/bin/graylog2-web-interface
Play server process ID is 2319
Oops, cannot start the server.
com.google.inject.ProvisionException: Guice provision errors:
1) null returned by binding at models.Node$Factory.fromSummaryResponse()
but parameter 2 of models.Node.<init>() is not @Nullable
while locating models.api.responses.cluster.NodeSummaryResponse annotated with @com.google.inject.assistedinject.Assisted(value=)
for parameter 2 at models.Node.<init>(Node.java:83)
while locating models.Node annotated with interface com.google.inject.assistedinject.Assisted
function renderElement(page, selector) {
var prevClipRect = page.clipRect;
page.clipRect = page.evaluate(function(selector) {
return document.querySelector(selector).getBoundingClientRect();
}, selector);
var pic = page.renderBase64('png');
page.clipRect = prevClipRect;
var Routes = (function() {
var _ = {}, ctor = function(){};
_.bind = function bind(func, context) {
var bound, args, slice = Array.prototype.slice;
args = slice.call(arguments, 2);
return bound = function() {
if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments)));
ctor.prototype = func.prototype;
var self = new ctor;
var result = func.apply(self, args.concat(slice.call(arguments)));