Skip to content

Commit

Permalink
Update golden files
Browse files Browse the repository at this point in the history
fix linter error
  • Loading branch information
treff7es committed Oct 8, 2024
1 parent 41f6c49 commit 718b3bc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
4 changes: 2 additions & 2 deletions metadata-ingestion/src/datahub/ingestion/source/mongodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ def __init__(self, ctx: PipelineContext, config: MongoDBConfig):

# See https://pymongo.readthedocs.io/en/stable/examples/datetimes.html#handling-out-of-range-datetimes
self.mongo_client = MongoClient(
self.config.connect_uri, datetime_conversion="DATETIME_AUTO", **options
) # type: ignore
self.config.connect_uri, datetime_conversion="DATETIME_AUTO", **options # type: ignore
)

# This cheaply tests the connection. For details, see
# https://pymongo.readthedocs.io/en/stable/api/pymongo/mongo_client.html#pymongo.mongo_client.MongoClient
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@
"actor": "urn:li:corpuser:datahub"
}
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
},
{
"fieldPath": "email",
Expand All @@ -296,7 +297,8 @@
"actor": "urn:li:corpuser:datahub"
}
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
}
]
}
Expand Down Expand Up @@ -463,7 +465,8 @@
}
]
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
},
{
"fieldPath": "email",
Expand All @@ -479,7 +482,8 @@
"globalTags": {
"tags": []
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
}
]
}
Expand Down Expand Up @@ -620,7 +624,8 @@
}
]
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
},
{
"fieldPath": "email",
Expand All @@ -636,7 +641,8 @@
"globalTags": {
"tags": []
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@
"actor": "urn:li:corpuser:datahub"
}
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
},
{
"fieldPath": "email",
Expand All @@ -295,7 +296,8 @@
"actor": "urn:li:corpuser:datahub"
}
},
"isPartOfKey": false
"isPartOfKey": false,
"isPartitioningKey": false
}
]
}
Expand Down

0 comments on commit 718b3bc

Please sign in to comment.