This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-cloudmonkey.git

commit b9b7e1782291f469e6e44040553bf76a6fedb796
Author: Rohit Yadav <ro...@apache.org>
AuthorDate: Sat Jun 23 20:41:46 2018 +0530

    config: enable asyncblock by default, fix double space
    
    Signed-off-by: Rohit Yadav <ro...@apache.org>
---
 config/config.go | 4 ++--
 config/prompt.go | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/config/config.go b/config/config.go
index 044e17d..c210e8a 100644
--- a/config/config.go
+++ b/config/config.go
@@ -78,10 +78,10 @@ func getDefaultConfigDir() string {
 func defaultCoreConfig() Core {
        return Core{
                Prompt:      "🐱",
-               AsyncBlock:  false,
+               AsyncBlock:  true,
                Timeout:     1800,
                Output:      JSON,
-               ProfileName: "local",
+               ProfileName: "localcloud",
        }
 }
 
diff --git a/config/prompt.go b/config/prompt.go
index fe002d1..1e3ae40 100644
--- a/config/prompt.go
+++ b/config/prompt.go
@@ -29,7 +29,7 @@ var emojis []string
 
 func init() {
        rand.Seed(time.Now().Unix())
-       emojis = strings.Split("🐶 🐹 🐰 🐻 🐼 🐨 🐯 🦁 🐷 🐙 🙈 🙉 🙊 🐒 🐔 🐧 🐦 🐤 🐣 🐥 🐺 🐗 🐴 🦄 
🐝 🐛 🐌 🐞 🐜 🕷 🦂 🦀 🐍 🐢 🐠 🐟 🐡 🐬 🐳 🐋 🐅 🐃 🐂 🐄 🐘 🐐 🐑 🐎 🐖 🐀 🐓 🦃 🕊 🐕 🐩 🐈 🐇 🐿  🐲 🌵 🦍 🦊 🦌 
🦏 🦇 🦅 🦆 🦉 🦈 🦐 🦑 🦋 🌴 🍀 🍂 🍁 🍄 🌍 ⛅️", " ")
+       emojis = strings.Split("🐶 🐹 🐰 🐻 🐼 🐨 🐯 🦁 🐷 🐙 🙈 🙉 🙊 🐒 🐔 🐧 🐦 🐤 🐣 🐥 🐺 🐗 🐴 🦄 
🐝 🐛 🐌 🐞 🐜 🕷 🦂 🦀 🐍 🐢 🐠 🐟 🐡 🐬 🐳 🐋 🐅 🐃 🐂 🐄 🐘 🐐 🐑 🐎 🐖 🐀 🐓 🦃 🕊 🐕 🐩 🐈 🐇 🐿 🐲 🌵 🦍 🦊 🦌 🦏 
🦇 🦅 🦆 🦉 🦈 🦐 🦑 🦋 🌴 🍀 🍂 🍁 🍄 🌍 ⛅️", " ")
 }
 
 func emoji() string {

Reply via email to