Activity overview
Latest activity by eko_joseph
Yup. When we run aws configure, it creates a profile exactly like that, with a bit more information. We ran a code snippet to make sure our AWS SDK configuration was correct. import com.amazonaws.regions.AwsProfileRegionProvider;
public class Scratch
{
public static void main(String[] args)
{
System.out.println(new AwsProfileRegionProvider().getRegion());
}
} Execution of this program in our development environment results in "us-east-1." The developer still cannot run migrations that use AWS functionality in Flyway. / comments
Yup. When we run aws configure, it creates a profile exactly like that, with a bit more information. We ran a code snippet to make sure our AWS SDK configuration was correct.import com.amazonaws.re...
Flyway cannot find AWS Credentials Chain
Hi all,A developer has been having issues relating to AWS integration with Flyway. Upon trying to grab migrations from an S3 bucket, the program fails, stating that it cannot find the AWS region as...
Log overload from debugging Flyway Maven plugin
Hi!We recently have been dealing with lock wait
timeouts in our deploys when the Flyway Maven plugin tries to acquire a
lock. We have since passed in the debug flag (-X) to help understand the
i...