Skip to content
Snippets Groups Projects

built the system to sequentually pick up old ephemerals, breaks interfaces and tests

Merged Richard T. Carback III requested to merge delayedOldPickup into release
3 unresolved threads

Merge request reports

Approved by

Merged by Benjamin WengerBenjamin Wenger 2 years ago (Oct 25, 2022 8:13pm UTC)

Merge details

  • Changes merged into release with 9f32f78b.
  • Deleted the source branch.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
42 43 }
43 44
44 45 // Add channel's identity
45 net.AddIdentity(channel.ReceptionID, identity.Forever, true)
46 net.AddIdentityWithHistory(channel.ReceptionID, identity.Forever,
47 time.Now().Add(-500*time.Second), true)
  • Jake Taylor approved this merge request

    approved this merge request

  • pipeline

  • added 1 commit

    • e05cd097 - updatred for creation timestamp in channel

    Compare with previous version

  • 43 43 // DefaultExtraChecks is the default value for ExtraChecks
    44 44 // on receptionID.Identity.
    45 45 DefaultExtraChecks = 10
    46
    47 NetworkRetention = 500 * time.Hour
  • 355 380 }
    356 381
    357 382 newIdentity.Ephemeral = !inQuestion.Persistent
    358 if err := t.ephemeral.AddIdentity(newIdentity); err != nil {
    359 jww.FATAL.Panicf("Could not insert identity: %+v", err)
    383
    384 // If the identity expired before the current time, we know it
    385 // is no longer valid and should be added to the chain
    386 if netTime.Now().After(newIdentity.EndValid) {
    387 identitiesToChain = append(identitiesToChain, newIdentity)
  • added 1 commit

    Compare with previous version

  • added 1 commit

    • 16425ac7 - fixed identities linked list construction

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • added 2 commits

    • 6613bf11 - Fix tests
    • f7dd95f3 - Merge branch 'delayedOldPickup' of git.xx.network:elixxir/client into delayedOldPickup

    Compare with previous version

  • Benjamin Wenger added 2 commits

    added 2 commits

    • 9fdb2c34 - fixed how bounds for when to generate historical identities are created
    • a1c5be91 - Merge remote-tracking branch 'origin/delayedOldPickup' into delayedOldPickup

    Compare with previous version

  • added 1 commit

    • bfbe7df8 - another fixed how bounds for when to generate historical identities are created

    Compare with previous version

  • added 1 commit

    • ac0564dc - improved code quality on the selection of the identtiy range

    Compare with previous version

  • Benjamin Wenger mentioned in commit 9f32f78b

    mentioned in commit 9f32f78b

  • Please register or sign in to reply
    Loading