Skip to content

Commit

Permalink
ops: deploy v1.3.1-998de7d vers
Browse files Browse the repository at this point in the history
  • Loading branch information
dd84ai committed Nov 24, 2023
1 parent 998de7d commit c01a076
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"

env:
tag_version: v1.3.1
tag_version: v1.3.1-998de7d

tasks:
build-version:
Expand Down
4 changes: 2 additions & 2 deletions app/forumer/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func (v *Forumer) update() {
v.GetPost(thread, func(new_post *forum_types.Post) {
for _, channel := range channelIDs {
msgs, err := v.Discorder.GetLatestMessages(channel)
if logus.CheckError(err, "failed to get discord latest msgs") {
if logus.CheckError(err, "failed to get discord latest msgs", logus.ChannelID(channel)) {
continue
}
v.TrySendMsg(channel, new_post, msgs)
Expand All @@ -267,7 +267,7 @@ func (v *Forumer) RetryMsgs() {
channelIDs, _ := v.Channels.List()
for _, channel := range channelIDs {
msgs, err := v.Discorder.GetLatestMessages(channel)
if logus.CheckError(err, "failed to get discord latest msgs") {
if logus.CheckError(err, "failed to get discord latest msgs", logus.ChannelID(channel)) {
continue
}

Expand Down
2 changes: 1 addition & 1 deletion infra/tf/production/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ module "darkbot" {
configurator_dbname = "production"
consoler_prefix = "."
secrets = local.secrets
tag_version = "v1.3.1"
tag_version = "v1.3.1-998de7d"
}
2 changes: 1 addition & 1 deletion infra/tf/staging/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "darkbot" {
configurator_dbname = "staging"
consoler_prefix = ","
secrets = local.secrets
tag_version = "v1.3.1"
tag_version = "v1.3.1-998de7d"
debug = false
}

Expand Down

0 comments on commit c01a076

Please sign in to comment.