CloudSlang/cloud-slang

View on GitHub
cloudslang-runtime/src/main/resources/scripts/get_run_id.py

Summary

Maintainability
A
1 hr
Test Coverage
def get_run_id():
    try:
        value = get_from_smaller_context("get_run_id()")
    except NameError:
        value = globals().get("get_run_id()")
    return "" if value is None else value