diff --git a/backend/app_sdk/app_base.py b/backend/app_sdk/app_base.py index 9174cc0d..9892aa95 100755 --- a/backend/app_sdk/app_base.py +++ b/backend/app_sdk/app_base.py @@ -2829,12 +2829,13 @@ class AppBase: return True, "" # Startnode should always run - no need to check incoming - try: - if action["id"] == fullexecution["start"]: - return True, "" - except Exception as error: - self.logger.info(f"[WARNING] Failed checking startnode: {error}") - return True, "" + # Removed November 2023 due to people wanting startnode to also check + #try: + # if action["id"] == fullexecution["start"]: + # return True, "" + #except Exception as error: + # self.logger.info(f"[WARNING] Failed checking startnode: {error}") + # return True, "" available_checks = [ "=", diff --git a/backend/go-app/go.mod b/backend/go-app/go.mod index 6dd36169..14cecd74 100644 --- a/backend/go-app/go.mod +++ b/backend/go-app/go.mod @@ -1,6 +1,6 @@ module shuffle-shared -//replace github.com/shuffle/shuffle-shared => ../../../shuffle-shared +replace github.com/shuffle/shuffle-shared => ../../../shuffle-shared go 1.19