Commit d6651275 authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Update changelog.

parent 040532e2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
### Changed
- Update devconsole lodash (4.17.13) and lodash.template (4.5.0) dependencies.
- Errors from runtime before hooks no longer close the session.
- Switch prometheus metrics to use labels instead of a prefix.

### Fixed
- Handle updates during leaderboard schedule reset window.
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ func (m *Metrics) initStackdriver(logger, startupLogger *zap.Logger, config Conf
}

func (m *Metrics) initPrometheus(logger, startupLogger *zap.Logger, config Config) {
	labels := make(map[string]string)
	labels := make(map[string]string, 2)
	labels["node_name"] = config.GetName()

	if config.GetMetrics().Namespace != "" {