Skip to content

Commit 4159df8

Browse files
authored
fix: Add --license placeholder for future use (#156)
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 458f5f5 commit 4159df8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: lib/src/main/java/io/cloudquery/server/ServeCommand.java

+5
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ public class ServeCommand implements Callable<Integer> {
6666
description = "use Open Telemetry HTTP endpoint (for development only)")
6767
private Boolean otelEndpointInsecure = false;
6868

69+
@Option(
70+
names = "--license",
71+
description = "set offline license file (placeholder for future use)")
72+
private String licenseFile = "";
73+
6974
private final Plugin plugin;
7075

7176
public ServeCommand(Plugin plugin) {

0 commit comments

Comments
 (0)