Skip to content

Commit

Permalink
Merge pull request #908 from softwaremill/update/scalafmt-core-3.7.17
Browse files Browse the repository at this point in the history
Update scalafmt-core to 3.7.17
  • Loading branch information
micossow authored Nov 18, 2023
2 parents b14b4d0 + cee32ea commit efbe707
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ daaea1a1da5d3374ea1c3e17891f8f1ae37f8418

# Scala Steward: Reformat with scalafmt 3.7.15
23f5d3fa4775a9cbe9eb30f3e316a10628d6516f

# Scala Steward: Reformat with scalafmt 3.7.17
0eb60eae8f0ef61bf1a47956c8b030e4b5d62a4f
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=3.7.16
version=3.7.17
maxColumn = 120
runner.dialect = scala213
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,15 @@ trait SqsClientServerWithSdkV2Communication extends AnyFunSuite with BeforeAndAf
strictServer.waitUntilStarted()
relaxedServer.waitUntilStarted()

clientV2 = SqsClient.builder()
clientV2 = SqsClient
.builder()
.credentialsProvider(StaticCredentialsProvider.create(AwsBasicCredentials.create("x", "x")))
.region(Region.EU_CENTRAL_1)
.endpointOverride(new URI("http://localhost:9321"))
.build()

relaxedClientV2 = SqsClient.builder()
relaxedClientV2 = SqsClient
.builder()
.credentialsProvider(StaticCredentialsProvider.create(AwsBasicCredentials.create("x", "x")))
.region(Region.EU_CENTRAL_1)
.endpointOverride(new URI("http://localhost:9322"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,9 @@ object SQSException {

/** Indicates a queue does not exist */
def nonExistentQueue: SQSException =
new SQSException("AWS.SimpleQueueService.NonExistentQueue", errorType = "com.amazonaws.sqs#QueueDoesNotExist", errorMessage = Some("The specified queue does not exist."))
new SQSException(
"AWS.SimpleQueueService.NonExistentQueue",
errorType = "com.amazonaws.sqs#QueueDoesNotExist",
errorMessage = Some("The specified queue does not exist.")
)
}

0 comments on commit efbe707

Please sign in to comment.