Browse Source

That's not how gauges work.

Richard Crowley 14 years ago
parent
commit
356378cef5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gauge.go

+ 1 - 1
gauge.go

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