Skip to content

Commit

Permalink
Merge branch '6.2.0-post' into 6.2.1-post
Browse files Browse the repository at this point in the history
  • Loading branch information
ybyzek committed Oct 12, 2021
2 parents c3e3bc2 + 40cbd8f commit 0f6f61b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ccloud-observability/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ NAME=`basename "$0"`
QUIET="${QUIET:-false}"
[[ $QUIET == "true" ]] &&
REDIRECT_TO="/dev/null" ||
REDIRECT_TO="/dev/stdout"
REDIRECT_TO="/dev/tty"

# Source library
source ../utils/helper.sh
Expand Down
2 changes: 1 addition & 1 deletion cp-quickstart/start-cloud.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ NAME=`basename "$0"`
QUIET="${QUIET:-false}"
[[ $QUIET == "true" ]] &&
REDIRECT_TO="/dev/null" ||
REDIRECT_TO="/dev/stdout"
REDIRECT_TO="/dev/tty"

# Source library
source ../utils/helper.sh
Expand Down
6 changes: 3 additions & 3 deletions utils/ccloud_library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ function ccloud::create_acls_all_resources_full_access() {
QUIET="${QUIET:-false}"
[[ $QUIET == "true" ]] &&
local REDIRECT_TO="/dev/null" ||
local REDIRECT_TO="/dev/stdout"
local REDIRECT_TO="/dev/tty"

ccloud kafka acl create --allow --service-account $SERVICE_ACCOUNT_ID --operation CREATE --topic '*' &>"$REDIRECT_TO"
ccloud kafka acl create --allow --service-account $SERVICE_ACCOUNT_ID --operation DELETE --topic '*' &>"$REDIRECT_TO"
Expand Down Expand Up @@ -514,7 +514,7 @@ function ccloud::delete_acls_ccloud_stack() {
QUIET="${QUIET:-false}"
[[ $QUIET == "true" ]] &&
local REDIRECT_TO="/dev/null" ||
local REDIRECT_TO="/dev/stdout"
local REDIRECT_TO="/dev/tty"

echo "Deleting ACLs for service account ID $SERVICE_ACCOUNT_ID"

Expand Down Expand Up @@ -1050,7 +1050,7 @@ function ccloud::destroy_ccloud_stack() {
QUIET="${QUIET:-false}"
[[ $QUIET == "true" ]] &&
local REDIRECT_TO="/dev/null" ||
local REDIRECT_TO="/dev/stdout"
local REDIRECT_TO="/dev/tty"

echo "Destroying Confluent Cloud stack associated to service account id $SERVICE_ACCOUNT_ID"

Expand Down

0 comments on commit 0f6f61b

Please sign in to comment.