Richard Crowley 14 лет назад
Родитель
Сommit
356378cef5
1 измененных файлов с 1 добавлено и 1 удалено
  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.