- Get Status Overview (JIRA)
- Current Branch: tina/GLID-1260-get-status-service
- Refactoring Job state
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Print CSV header | |
echo "Service,Migration Status,Has SERVICE_NAME in bin/hermit.hcl,Has orc,SERVICE_NAME used in script count,orc.hcl count,OrcSchema count,orc.hcl files,OrcSchema files,SERVICE_NAME script files" | |
# Function to check if a directory is a project (has build.gradle.kts) | |
is_project() { | |
[ -f "$1/build.gradle.kts" ] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": [ | |
"arn:aws:iam::589470546847:role/self-serve/staging-pod999-data-mover-test-app-da2f0c81" | |
] | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ------------ | |
// Option 1: Inharitance | |
// ------------ | |
sealed trait DecodingError extends Throwable { | |
val message: String | |
} | |
object DecodingError { | |
final case class DecodingFailure(field: String) extends DecodingError { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController: UIViewController { | |
@IBOutlet weak var openContraint: NSLayoutConstraint! | |
@IBOutlet weak var closeContraint: NSLayoutConstraint! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
} |