Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/dbc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (m baseModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
tea.Println(msgStyle.Render("Did you run `dbc auth login`?")))
case errors.Is(msg, dbc.ErrUnauthorizedColumnar):
cmd = tea.Sequence(tea.Println(errStyle.Render(msg.Error())),
tea.Println(msgStyle.Render("Do you have an active license for this driver? Contact support@columnar.tech for assistance.")))
tea.Println(msgStyle.Render("Installing this driver requires a license. Verify you have an active license at https://cloud.columnar.tech/account and try this command again. Contact support@columnar.tech if you need assistance.")))
default:
cmd = tea.Println(errStyle.Render("Error: " + msg.Error()))
}
Expand Down
Loading