You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/02/21 08:04:32 UTC

[camel] branch master updated: Camel-AWS2-EC2: Fixed Cs

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 22e360a  Camel-AWS2-EC2: Fixed Cs
22e360a is described below

commit 22e360a132d397142712197c015e297c8c70104f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Feb 21 09:03:58 2020 +0100

    Camel-AWS2-EC2: Fixed Cs
---
 .../main/java/org/apache/camel/component/aws2/ec2/AWS2EC2Producer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws2-ec2/src/main/java/org/apache/camel/component/aws2/ec2/AWS2EC2Producer.java b/components/camel-aws2-ec2/src/main/java/org/apache/camel/component/aws2/ec2/AWS2EC2Producer.java
index 92b2fdf..000c4f3 100644
--- a/components/camel-aws2-ec2/src/main/java/org/apache/camel/component/aws2/ec2/AWS2EC2Producer.java
+++ b/components/camel-aws2-ec2/src/main/java/org/apache/camel/component/aws2/ec2/AWS2EC2Producer.java
@@ -221,7 +221,7 @@ public class AWS2EC2Producer extends DefaultProducer {
         try {
             result = ec2Client.startInstances(builder.build());
         } catch (AwsServiceException ase) {
-        	LOG.trace("Start Instances command returned the error code {}", ase.awsErrorDetails().errorCode());
+            LOG.trace("Start Instances command returned the error code {}", ase.awsErrorDetails().errorCode());
             throw ase;
         }
         LOG.trace("Starting instances with Ids [{}] ", Arrays.toString(instanceIds.toArray()));