We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d5ef370 + 367d435 commit 132cfcbCopy full SHA for 132cfcb
functions-framework-invoker/src/main/java/dev/openfunction/invoker/context/RuntimeContext.java
@@ -113,6 +113,10 @@ private void loadPlugins(ClassLoader classLoader) {
113
private Map<String, Plugin> loadPlugins(ClassLoader classLoader, String[] pluginNames) {
114
Map<String, Plugin> plugins = new HashMap<>();
115
116
+ if (pluginNames == null) {
117
+ return plugins;
118
+ }
119
+
120
for (String name : pluginNames) {
121
if (Objects.equals(name, TracingSkywalking)) {
122
plugins.put(TracingSkywalking, tracingPlugin);
0 commit comments