Skip to content

Commit

Permalink
update error text
Browse files Browse the repository at this point in the history
  • Loading branch information
nullfunc committed Jun 25, 2024
1 parent 7ce4a2b commit 2de3da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/cli/command/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (
const DEFANG_PORTAL_HOST = "portal.defang.dev"
const SERVICE_PORTAL_URL = "https://" + DEFANG_PORTAL_HOST + "/service"

var ErrorFailedToReachRunningState = errors.New("Failed to reached running state")
var ErrorDeploymentFailed = errors.New("Failed to reached running state")
var ErrorFailedToReachRunningState = errors.New("failed to reached running state")
var ErrorDeploymentFailed = errors.New("deployment failed")

const authNeeded = "auth-needed" // annotation to indicate that a command needs authorization
var authNeededAnnotation = map[string]string{authNeeded: ""}
Expand Down

0 comments on commit 2de3da0

Please sign in to comment.