该文件在更新lambda之前一直工作到最近,但是开始显示以下错误:
Calling the invoke API action failed with this message: Lambda was not able to unzip the file
我认为可能是因为它已达到极限,但阴影罐仅24.3 MB
我认为它可能是一个损坏的jar,但是我对maven的了解还不足以确保它不是损坏的jar。
关于我应该如何解决/调试的任何想法?
插件:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
重复没有关系,因为它已经使用了一年,并且在那里提供的解决方案不能解决我的问题