You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the crawler will log a warning and continue without the custom behavior if a custom behavior cannot be loaded from the specified URL or Git repository. This can result in unexpected crawl results. Instead, the crawler should log an error and exit if a custom behavior cannot be loaded.
We should do something similar for custom behaviors specified via a local filepath, namely fail if if no custom behaviors are collected or the specified filepath doesn't exist.
The text was updated successfully, but these errors were encountered:
Fixes#797
The crawler will now exit with a fatal log message and exit code 17 if:
- A Git repository specified with `--customBehavior` cannot be cloned
successfully (new)
- A custom behavior file at a URL specified with `--customBehavior` is
not fetched successfully (new)
- No custom behaviors are collected at a local filepath specified with
`--customBehavior`, or if an error is thrown while attempting to collect
files from a nonexistent path (new)
- Any custom behaviors collected fail `Browser.checkScript` validation
(existing behavior)
Tests have also been added accordingly.
Currently, the crawler will log a warning and continue without the custom behavior if a custom behavior cannot be loaded from the specified URL or Git repository. This can result in unexpected crawl results. Instead, the crawler should log an error and exit if a custom behavior cannot be loaded.
We should do something similar for custom behaviors specified via a local filepath, namely fail if if no custom behaviors are collected or the specified filepath doesn't exist.
The text was updated successfully, but these errors were encountered: