We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9663e03 commit cdbb17eCopy full SHA for cdbb17e
applications/app/controllers/ArchiveController.scala
@@ -8,10 +8,8 @@ import services.S3
8
import services.DynamoDB
9
import play.api.templates.Html
10
11
-//import play.api.libs.ws._
12
13
// looks for an archived file in S3 bucket
14
-
15
object S3Archive extends S3 {
16
override lazy val bucket = "aws-frontend-archive"
17
def getHtml(path: String) = get(path)
common/app/services/DynamoDB.scala
@@ -20,7 +20,7 @@ trait DynamoDB extends Logging {
20
21
def destinationFor(source: String) = {
22
23
- val url = new AttributeValue().withS(s"""http://$source""")
+ val url = new AttributeValue().withS(s"http://$source")
24
25
val getItemRequest = new GetItemRequest()
26
.withTableName(tableName)
0 commit comments