Closed mtanski closed 7 years ago
@mtanski thanks very much for the bug report. We'll see about getting this fixed shortly.
@mtanski good point. I'll update the code. I think the following will do it:
c['tags'] = dict(dict(self.tags), **c['tags'])
This is addressed in https://github.com/librato/python-librato/pull/172
It looks like there's a bug in the code at: https://github.com/librato/python-librato/blob/master/librato/queue.py#L139
c['tags'] = dict(self.tags).update(c['tags'])
dict.update function does not return anything (None) so it overwrites c['tags'] with None