Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @angular/core from 4.0.3 to 10.2.5 in /udc/udc-web #288

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/gimel-connectors/restapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ urlData.collect.foreach(println)

// Override all properties and just set the complete-URL directly

spark.conf.set("gimel.restapi.url","https://www.googleapis.com/youtube/v3/activities/?maxResults=10&channelId=UC_x5XG1OV2P6uZZ5FSM9Ttw&part=snippet%2CcontentDetails&key=AIzaSyBeYqw8TdtDjwnoXQBfxyokhUmyyxGExY0")
spark.conf.set("gimel.restapi.url","https://www.googleapis.com/youtube/v3/activities/?maxResults=10&channelId=UC_x5XG1OV2P6uZZ5FSM9Ttw&part=snippet%2CcontentDetails&key=YOUR_KEY")
val urlData = dataset.read("youtube", props)
urlData.collect.foreach(println)
```
Expand Down
4 changes: 2 additions & 2 deletions udc/udc-serv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
```shell
docker pull mysql
docker rm mysql-standalone
docker run --name mysql-standalone -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=udc -e MYSQL_USER=udcadmin -e MYSQL_PASSWORD=Udc@123 -d mysql:latest
docker exec -i mysql-standalone mysql -uudcadmin -pUdc@123 udc < build/sql/udc_ddl.sql
docker run --name mysql-standalone -p 3306:3306 -e MYSQL_ROOT_PASSWORD= -e MYSQL_DATABASE=udc -e MYSQL_USER= -e MYSQL_PASSWORD= -d mysql:latest
docker exec -i mysql-standalone mysql -u -p udc < build/sql/udc_ddl.sql
```

* Invoke the following command to start the udc-services
Expand Down
8 changes: 4 additions & 4 deletions udc/udc-serv/quickstart/set-env
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ export final_jar=${udc_repo_home}/target/$udc_jar_name

# ENVIRONMENT VARIABLES FOR UDC_META_STORE
export mysql_exposed_port=3306
export mysql_root_password=password
export mysql_database=udc
export mysql_user=udcadmin
export mysql_password=Udc@123
export mysql_root_password=
export mysql_database=
export mysql_user=
export mysql_password=
export mysql_image_name=mysql
export mysql_container_name=mysql-standalone
export mysql_image_tag_name=latest
4 changes: 2 additions & 2 deletions udc/udc-serv/src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ spring.datasource.url=jdbc:mysql://mysql-standalone:3306/udc
spring.datasource.dataSourceProperties.serverName=mysql-standalone
spring.datasource.minimumIdle = 10
spring.datasource.maximumPoolSize = 20
spring.datasource.username=udcadmin
spring.datasource.password=Udc@123
spring.datasource.username=
spring.datasource.password=
2 changes: 1 addition & 1 deletion udc/udc-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@angular/cdk": "2.0.0-beta.8",
"@angular/common": "4.0.3",
"@angular/compiler": "~4.0.2",
"@angular/core": "4.0.3",
"@angular/core": "10.2.5",
"@angular/flex-layout": "2.0.0-beta.8",
"@angular/forms": "~4.0.2",
"@angular/http": "~4.0.2",
Expand Down
Loading