Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Remove test channel being hardcoded in update request
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel committed Jun 8, 2016
1 parent 760a184 commit 5098f03
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion error.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (e Error) Error() string {
return fmt.Sprintf("Update Error (%s): %s", e.TypeString(), e.source.Error())
}

// CancelError can be returned by lifecycle methods to abort an update
// CancelErr can be returned by lifecycle methods to abort an update
func CancelErr(err error) Error {
return NewError(CancelError, err)
}
Expand Down
2 changes: 0 additions & 2 deletions keybase/source.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ func (k UpdateSource) findUpdate(options updater.UpdateOptions, timeout time.Dur
urlValues.Add("run_mode", options.Env)
urlValues.Add("os_version", options.OSVersion)
urlValues.Add("upd_version", options.UpdaterVersion)
// Temporarily adding for testing
urlValues.Add("channel", "test")

force := util.EnvBool("KEYBASE_UPDATER_FORCE", false)
if force {
Expand Down

0 comments on commit 5098f03

Please sign in to comment.