File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
namespace Hammerstone \Sidecar ;
7
7
8
8
use Exception ;
9
- use Illuminate \Support \Str ;
10
9
use Hammerstone \Sidecar \Clients \LambdaClient ;
11
10
use Hammerstone \Sidecar \Events \AfterFunctionsActivated ;
12
11
use Hammerstone \Sidecar \Events \AfterFunctionsDeployed ;
13
12
use Hammerstone \Sidecar \Events \BeforeFunctionsActivated ;
14
13
use Hammerstone \Sidecar \Events \BeforeFunctionsDeployed ;
15
14
use Hammerstone \Sidecar \Exceptions \NoFunctionsRegisteredException ;
15
+ use Illuminate \Support \Str ;
16
16
17
17
class Deployment
18
18
{
@@ -196,7 +196,7 @@ protected function warmLatestVersion(LambdaFunction $function)
196
196
$ results = Sidecar::warmSingle ($ function , $ async = false , $ version );
197
197
198
198
if ($ warmed = count ($ results )) {
199
- Sidecar::log ("Warmed $ warmed " . Str::plural (" instance " , $ warmed ));
199
+ Sidecar::log ("Warmed $ warmed " . Str::plural (' instance ' , $ warmed ));
200
200
} else {
201
201
Sidecar::log ('No instances warmed. If this is unexpected, confirm your `warmingConfig` method is set up correctly. ' );
202
202
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ abstract class Runtime
17
17
public const PYTHON_37 = 'python3.7 ' ;
18
18
19
19
public const RUBY_27 = 'ruby2.7 ' ;
20
-
20
+
21
21
public const JAVA_11 = 'java11 ' ;
22
22
23
23
public const JAVA_8_LINUX2 = 'java8.al2 ' ;
You can’t perform that action at this time.
0 commit comments