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.
1 parent cd6caed commit 3e0f372Copy full SHA for 3e0f372
invoker/core/src/main/java/com/google/cloud/functions/invoker/runner/Invoker.java
@@ -418,6 +418,9 @@ static URL[] classpathToUrls(String classpath) {
418
urls.addAll(jarsIn(component.substring(0, component.length() - 2)));
419
} else {
420
Path path = Paths.get(component);
421
+ if(!Files.isRegularFile(path)) {
422
+ logger.log(Level.WARNING, "Classpath entry '" + path + "' does not exist");
423
+ }
424
try {
425
urls.add(path.toUri().toURL());
426
} catch (MalformedURLException e) {
0 commit comments