Przeglądaj źródła

That's not how gauges work.

Richard Crowley 14 lat temu
rodzic
commit
356378cef5
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gauge.go

+ 1 - 1
gauge.go

@@ -26,7 +26,7 @@ func NewGauge() Gauge {
 
 
 // Update the gauge's value.
 // Update the gauge's value.
 func (g *StandardGauge) Update(v int64) {
 func (g *StandardGauge) Update(v int64) {
-	atomic.AddInt64(&g.value, v)
+	g.value = v
 }
 }
 
 
 // Return the gauge's current value.
 // Return the gauge's current value.