Skip to content

Commit

Permalink
Increasing Dashboard consumerName field to 256 varchar (apache#4716)
Browse files Browse the repository at this point in the history
* Changed remove-backlog-quotas to remove-backlog-quota

* Changed remove-backlog-quotas to remove-backlog-quota

* Increased the consumerName field to varchar(256)

Signed-off-by: Yuvaraj Loganathan <[email protected]>
  • Loading branch information
skyrocknroll authored and sijie committed Jul 21, 2019
1 parent 1087dad commit d7b3af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/django/stats/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class Consumer(Model):
address = CharField(max_length=64, null=True)
availablePermits = IntegerField(default=0)
connectedSince = DateTimeField(null=True)
consumerName = CharField(max_length=64, null=True)
consumerName = CharField(max_length=256, null=True)
msgRateOut = DecimalField(max_digits = 12, decimal_places=1, default=0)
msgRateRedeliver = DecimalField(max_digits = 12, decimal_places=1, default=0)
msgThroughputOut = DecimalField(max_digits = 12, decimal_places=1, default=0)
Expand Down

0 comments on commit d7b3af0

Please sign in to comment.