How To Handle Errors In Make.com (No Fluff Error Handling)

Поделиться
HTML-код
  • Опубликовано: 25 окт 2024
  • НаукаНаука

Комментарии • 20

  • @nicksaraev
    @nicksaraev  5 месяцев назад +1

    My new step-by-step program to get you your first automation customer is now live! Results guaranteed.
    Apply fast: skool.com/makerschool/about. Price increases every 10 members 🙏😤

  • @belou2361
    @belou2361 7 месяцев назад +1

    Hey Nick! Thanks for continuing to put out good quality content. If you could maybe show a video addressing loops in Make, that'd be great. For loops are quite possible, but While loops I've been struggling with. I have scenarios calling other scenarios via webhooks with the child scenarios calling back the parent scenarios to simulate while looping, but it's clunky and not easy to monitor and debug.

    • @nicksaraev
      @nicksaraev  7 месяцев назад +1

      Thanks so much Boris!
      I understand the motivation in wanting to recreate While loops, but tbh Make just isn't set up for it and I think trying to make a square peg fit into a round hole is poor ROI.
      Make.com design patterns are basically: webhook listeners, linear flow. Webhooks chese conceptually perform a similar role to While loops without the need for operationally expensive workarounds, so I'd recommend keeping your scenarios as simple as possible to increase maintainability.
      If you really need this functionality, I'd suggest using the "Custom JS" module and writing a script to handle whatever function you need your loop to do. Then treat that module as a black box and just pass i/o to or from it. You'll need an API key but it's probably much cheaper than what you're spending on ops.
      Hope this helps man 🙏

  • @tshiamotawele
    @tshiamotawele Месяц назад

    I love your content Nick, keep it up.
    Soon I am going to binge watch it from the beginning.

  • @SEEMABARBA-i5p
    @SEEMABARBA-i5p 9 дней назад

    A fantastic video Nick. Thank you for sharing.

  • @Padariz
    @Padariz 7 месяцев назад

    Hey Nick, you inspired me at 50(not techy) to jump into Make. I enrolled in the Academy and I'm on "expanding scenario". Getting foundation/basics down first! Soon I'll be following along with your video tutorials and making a Money "FLOW" to Flow my way! Thanks for the info!

    • @nicksaraev
      @nicksaraev  7 месяцев назад

      Paul: really appreciate the comment and your time 🙏 I have full faith you're going to crush it! Keep me posted on your progress man.

  • @romanescuder9038
    @romanescuder9038 7 месяцев назад

    Loving your content, I'll be tuned for a while

  • @AITrendsExpert-in9qj
    @AITrendsExpert-in9qj 2 месяца назад

    I have job envy! I am fairly new but love learning and love your videos. Keep them coming because I love them. Also if you do site audits, let me know! 🤑

  • @sharadkapoor1588
    @sharadkapoor1588 7 месяцев назад

    Another great video, my friend

    • @nicksaraev
      @nicksaraev  7 месяцев назад

      Thank you Sharad! Cheers man.

  • @powerfulLVE
    @powerfulLVE Месяц назад

    obrigado!

  • @bpet2237
    @bpet2237 7 месяцев назад

    Why don’t you like using routers?

    • @nicksaraev
      @nicksaraev  7 месяцев назад +3

      Most uses of routers aren't necessary and can be replaced with a switch module instead, which is more maintainable and scalable. I.e instead of three routes to handle some input, a switch lets you do it in one by defining input:output pairs. Much easier to work on since you only ever have to debug or change one route!

  • @chrislaishowcase
    @chrislaishowcase 2 месяца назад

    MAKE is so frustrating to use. Always have errors here and there, not worth the time. Sometimes it works then suddenly it doesnt which is ridiculous.

  • @ExitStrategyNYC
    @ExitStrategyNYC Месяц назад

    This feels like a pretty limited and not useful video :/ only helps deal with rate limiting errors where the fix is simply adding a delay :-/

    • @nicksaraev
      @nicksaraev  Месяц назад

      Agreed, one of my first. Will create a new, more comprehensive one soon.

    • @ExitStrategyNYC
      @ExitStrategyNYC Месяц назад

      @@nicksaraev among other things, I’d be curious to learn if error handlers are ever a core part of a “happy path” flow (for example rather than doing an explicit check to see if a user already has an account, just to try to create that account and then catch the failure if the database row write isn’t unique)