Skip to content

Commit 22d4c60

Browse files
authored
fix: Add --license placeholder for future use (#101)
plugin-pb-go [1.15.0](cloudquery/plugin-pb-go#196) now uses `--license` when invoking plugins, if one is set by the cli.
1 parent d491daf commit 22d4c60

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cloudquery/sdk/serve/plugin.py

+7
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,13 @@ def _register_serve_command(self, subparsers):
148148
default="",
149149
help="Open Telemetry HTTP collector endpoint (for development only) (placeholder for future use)",
150150
)
151+
# ignored for now
152+
serve_parser.add_argument(
153+
"--license",
154+
type=str,
155+
default="",
156+
help="set offline license file (placeholder for future use)",
157+
)
151158
serve_parser.add_argument(
152159
"--address",
153160
type=str,

0 commit comments

Comments
 (0)