We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7459d50 commit 6586a2eCopy full SHA for 6586a2e
pkg/commands/billing/subscribe.go
@@ -82,7 +82,9 @@ var SubscribeCommand = &cli.Command{
82
for {
83
select {
84
case <-timeout:
85
- return fmt.Errorf("payment confirmation timed out after 5 minutes. If you completed payment, run 'eigenx billing status' to check status")
+ logger.Info("\nPayment confirmation timed out after 5 minutes.")
86
+ logger.Info("If you completed payment, run 'eigenx billing status' to check status.")
87
+ return nil
88
case <-ticker.C:
89
subscription, err := client.GetUserSubscription(cCtx)
90
if err != nil {
0 commit comments