You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by "yihua (via GitHub)" <gi...@apache.org> on 2023/04/22 21:52:12 UTC

[GitHub] [hudi] yihua opened a new pull request, #8548: [HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

yihua opened a new pull request, #8548:
URL: https://github.com/apache/hudi/pull/8548

   ### Change Logs
   
   This PR fixes `testInsertDatasetWIthTimelineTimezoneUTC` which causes the GH Java CI to timeout during Spark tests.  The fix resets the TimeZone after the test is done.
   
   ### Impact
   
   Fixes the test.
   
   ### Risk level
   
   none
   
   ### Documentation Update
   
   N/A
   
   ### Contributor's checklist
   
   - [ ] Read through [contributor's guide](https://hudi.apache.org/contribute/how-to-contribute)
   - [ ] Change Logs and Impact were stated clearly
   - [ ] Adequate tests were added if applicable
   - [ ] CI passed
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWithTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1522628913

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634",
       "triggerID" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ecf4e47c740f033cfbc4735ea52ad3eed13493d1",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16653",
       "triggerID" : "ecf4e47c740f033cfbc4735ea52ad3eed13493d1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ecf4e47c740f033cfbc4735ea52ad3eed13493d1 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16653) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] yihua commented on a diff in pull request #8548: [HUDI-6119][HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "yihua (via GitHub)" <gi...@apache.org>.
yihua commented on code in PR #8548:
URL: https://github.com/apache/hudi/pull/8548#discussion_r1176046148


##########
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/TestHoodieSparkSqlWriter.scala:
##########
@@ -1250,6 +1251,7 @@ class TestHoodieSparkSqlWriter {
 
     assertTrue(beforeWriteInstant.toEpochMilli < writeInstant.toEpochMilli,
       s"writeInstant(${writeInstant.toEpochMilli}) must always be greater than beforeWriteInstant(${beforeWriteInstant.toEpochMilli}) if writeInstant was generated with UTC timezone")
+    TimeZone.setDefault(defaultTimezone)

Review Comment:
   Makes sense.  Fixed.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] danny0405 commented on a diff in pull request #8548: [WIP][HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "danny0405 (via GitHub)" <gi...@apache.org>.
danny0405 commented on code in PR #8548:
URL: https://github.com/apache/hudi/pull/8548#discussion_r1174491186


##########
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/TestHoodieSparkSqlWriter.scala:
##########
@@ -1232,6 +1232,7 @@ class TestHoodieSparkSqlWriter {
     val beforeWriteInstant = Instant.now()
 
     // set local timezone to America/Los_Angeles(UTC-7)
+    val defaultTimezone = TimeZone.getDefault
     TimeZone.setDefault(TimeZone.getTimeZone("America/Los_Angeles"))

Review Comment:
   Okay, my fault, we should never allows setting timezone explicitly in the code, the whole JVM process could be affected.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] boneanxs commented on a diff in pull request #8548: [WIP][HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "boneanxs (via GitHub)" <gi...@apache.org>.
boneanxs commented on code in PR #8548:
URL: https://github.com/apache/hudi/pull/8548#discussion_r1174534105


##########
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/TestHoodieSparkSqlWriter.scala:
##########
@@ -1250,6 +1251,7 @@ class TestHoodieSparkSqlWriter {
 
     assertTrue(beforeWriteInstant.toEpochMilli < writeInstant.toEpochMilli,
       s"writeInstant(${writeInstant.toEpochMilli}) must always be greater than beforeWriteInstant(${beforeWriteInstant.toEpochMilli}) if writeInstant was generated with UTC timezone")
+    TimeZone.setDefault(defaultTimezone)

Review Comment:
   Should wrap with `try ... finally` incase some errors throw out before this code?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1518878042

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ac74497b7402e09486ddf5da89a79d5465c41e21 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [WIP][HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1518910123

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ac74497b7402e09486ddf5da89a79d5465c41e21 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] yihua commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWithTimelineTimezoneUTC`

Posted by "yihua (via GitHub)" <gi...@apache.org>.
yihua commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1522025203

   CI is green.
   <img width="1655" alt="Screenshot 2023-04-25 at 08 44 23" src="https://user-images.githubusercontent.com/2497195/234331407-93e74498-4a0d-4b84-9cd6-52d3a0d40207.png">
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWithTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1522096400

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634",
       "triggerID" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ecf4e47c740f033cfbc4735ea52ad3eed13493d1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16653",
       "triggerID" : "ecf4e47c740f033cfbc4735ea52ad3eed13493d1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbfe0c394ec50c9c82ee2016d8d165381e671c23 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634) 
   * ecf4e47c740f033cfbc4735ea52ad3eed13493d1 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16653) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWithTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1522085685

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634",
       "triggerID" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ecf4e47c740f033cfbc4735ea52ad3eed13493d1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ecf4e47c740f033cfbc4735ea52ad3eed13493d1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbfe0c394ec50c9c82ee2016d8d165381e671c23 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634) 
   * ecf4e47c740f033cfbc4735ea52ad3eed13493d1 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] yihua commented on a diff in pull request #8548: [WIP][HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "yihua (via GitHub)" <gi...@apache.org>.
yihua commented on code in PR #8548:
URL: https://github.com/apache/hudi/pull/8548#discussion_r1176040725


##########
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/TestHoodieSparkSqlWriter.scala:
##########
@@ -1232,6 +1232,7 @@ class TestHoodieSparkSqlWriter {
     val beforeWriteInstant = Instant.now()
 
     // set local timezone to America/Los_Angeles(UTC-7)
+    val defaultTimezone = TimeZone.getDefault
     TimeZone.setDefault(TimeZone.getTimeZone("America/Los_Angeles"))

Review Comment:
   No worries.  This should fix the test issue.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1521223293

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634",
       "triggerID" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ac74497b7402e09486ddf5da89a79d5465c41e21 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568) 
   * fbfe0c394ec50c9c82ee2016d8d165381e671c23 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1518858273

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ac74497b7402e09486ddf5da89a79d5465c41e21 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1521215427

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ac74497b7402e09486ddf5da89a79d5465c41e21 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568) 
   * fbfe0c394ec50c9c82ee2016d8d165381e671c23 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWIthTimelineTimezoneUTC`

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8548:
URL: https://github.com/apache/hudi/pull/8548#issuecomment-1521780137

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16568",
       "triggerID" : "ac74497b7402e09486ddf5da89a79d5465c41e21",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634",
       "triggerID" : "fbfe0c394ec50c9c82ee2016d8d165381e671c23",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbfe0c394ec50c9c82ee2016d8d165381e671c23 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=16634) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] codope merged pull request #8548: [HUDI-6126] Fix test `testInsertDatasetWithTimelineTimezoneUTC`

Posted by "codope (via GitHub)" <gi...@apache.org>.
codope merged PR #8548:
URL: https://github.com/apache/hudi/pull/8548


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org