File tree 2 files changed +3
-3
lines changed
oci-load-file-into-adw-python 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 146
146
fn config function myapp oci-adb-ords-runsql-python ords-base-url "https://xxxxxx-db123456.adb.us-region.oraclecloudapps.com/ords/"
147
147
fn config function myapp oci-adb-ords-runsql-python db-schema "admin"
148
148
fn config function myapp oci-adb-ords-runsql-python db-user "admin"
149
- fn config function myapp oci-adb-ords-runsql-python dbpwd-cypher "xxxxxxxxx"
149
+ fn config function myapp oci-adb-ords-runsql-python dbpwd-cipher "xxxxxxxxx"
150
150
fn config function myapp oci-adb-ords-runsql-python input-bucket "input-bucket"
151
151
fn config function myapp oci-adb-ords-runsql-python processed-bucket "processed-bucket"
152
152
```
Original file line number Diff line number Diff line change @@ -82,8 +82,8 @@ def handler(ctx, data: io.BytesIO=None):
82
82
object_name = bucket_name = namespace = ordsbaseurl = schema = dbuser = dbpwd = ""
83
83
try :
84
84
cfg = ctx .Config ()
85
- input_bucket = cfg ["input_bucket " ]
86
- processed_bucket = cfg ["processed_bucket " ]
85
+ input_bucket = cfg ["input-bucket " ]
86
+ processed_bucket = cfg ["processed-bucket " ]
87
87
ordsbaseurl = cfg ["ords-base-url" ]
88
88
schema = cfg ["db-schema" ]
89
89
dbuser = cfg ["db-user" ]
You can’t perform that action at this time.
0 commit comments