Commit cd8f5835 by Torkel Ödegaard Committed by GitHub

Merge pull request #15395 from briangann/20190212_adjust_notifier_render_timeout

allow 90 percent of alertTimeout for rendering to complete vs 50 percent
parents 0b13c96c c98b00c3
...@@ -3,6 +3,7 @@ package alerting ...@@ -3,6 +3,7 @@ package alerting
import ( import (
"errors" "errors"
"fmt" "fmt"
"time"
"github.com/grafana/grafana/pkg/bus" "github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/components/imguploader" "github.com/grafana/grafana/pkg/components/imguploader"
...@@ -126,7 +127,7 @@ func (n *notificationService) uploadImage(context *EvalContext) (err error) { ...@@ -126,7 +127,7 @@ func (n *notificationService) uploadImage(context *EvalContext) (err error) {
renderOpts := rendering.Opts{ renderOpts := rendering.Opts{
Width: 1000, Width: 1000,
Height: 500, Height: 500,
Timeout: alertTimeout / 2, Timeout: time.Duration(float64(alertTimeout) * 0.9),
OrgId: context.Rule.OrgId, OrgId: context.Rule.OrgId,
OrgRole: m.ROLE_ADMIN, OrgRole: m.ROLE_ADMIN,
ConcurrentLimit: setting.AlertingRenderLimit, ConcurrentLimit: setting.AlertingRenderLimit,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment